smarty常量--SMARTY_DIR 目录

本常量为Smarty类文件绝对路径,如果未定义本变量,Smarty将尝试自行提供一个适当的值,如果为本变量提供了路径值,请在路径后加一个斜杠"/"。

Example 11-1. SMARTY_DIR
<?php
// set path to Smarty directory *nix style
define('SMARTY_DIR', '/usr/local/lib/php/Smarty-v.e.r/libs/');
// path to Smarty windows style
define('SMARTY_DIR', 'c:/webroot/libs/Smarty-v.e.r/libs/');
// include the smarty class, note 'S' is upper case
require_once(SMARTY_DIR . 'Smarty.class.php');
?>
posted @ 2012-03-09 10:02  haiwei.sun  阅读(517)  评论(0编辑  收藏  举报
返回顶部