0

我找到了用 Smarty2 编写的旧网页,但我不明白这一点。你能告诉我之间的区别:

$_Html = new SmartyC(TRUE);
and
$_Html = new Smarty();

我在手册中找不到 SmartyC()。

4

1 回答 1

0

在整个网站项目中搜索class SmartyC. 我假设,您会找到一个自定义类,它以某种方式扩展了原始 Smarty 类,例如:

class SmartyC extends Smarty
{
  function _construct($b)
  {
    // do something with $b like
    // if($b)
    // {
    //    $this->caching = true;
    // }
  }
}
于 2013-05-16T11:13:17.137 回答