Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我找到了用 Smarty2 编写的旧网页,但我不明白这一点。你能告诉我之间的区别:
$_Html = new SmartyC(TRUE); and $_Html = new Smarty();
我在手册中找不到 SmartyC()。
在整个网站项目中搜索class SmartyC. 我假设,您会找到一个自定义类,它以某种方式扩展了原始 Smarty 类,例如:
class SmartyC
class SmartyC extends Smarty { function _construct($b) { // do something with $b like // if($b) // { // $this->caching = true; // } } }