jdgdf566 发表于 2012-03-11 20:35

【已解决】SmartyBC.class.php是干什么用的?

本帖最后由 jdgdf566 于 2013-09-06 09:36 编辑

与Smarty.class.php什么关系?

Heqingqiang 发表于 2012-03-12 11:57

在哪里的。。。

jdgdf566 发表于 2012-03-12 13:40

回复 2# Heqingqiang


    smarty 3.1.8

网游世界 发表于 2013-04-28 14:02

向前兼容的类库

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

maochanglu 发表于 2013-05-03 09:09

向后兼容?
页: [1]
查看完整版本: 【已解决】SmartyBC.class.php是干什么用的?