Smarty Icon

You may use the Smarty logo according to the trademark notice.

Smarty Template Engine Smarty Template Engine

For sponsorship, advertising, news or other inquiries, contact us at:

Sites Using Smarty

Advertisement

Chapter 19. SmartyBC - 向前兼容的类库

Table of Contents

SmartyBC 类

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();
?>