【已解决】SmartyBC.class.php是干什么用的?
本帖最后由 jdgdf566 于 2013-09-06 09:36 编辑与Smarty.class.php什么关系? 在哪里的。。。 回复 2# Heqingqiang
smarty 3.1.8 向前兼容的类库
SmartyBC 类
TODO: SmartyBC allows: {php} and {include_php}
Example 19.1. 使用SmartyBC<?php
// 原应使用
require_once('path/to/smarty/libs/Smarty.class.php');
$smarty = new Smarty();
// 兼容而使用
require_once('path/to/smarty/libs/SmartyBC.class.php');
$smarty = new SmartyBC();
?>在这里:http://www.speedphp.com/smarty/bc.html 向后兼容?
页:
[1]