安装Smarty发行版在/libs/目录里的库文件(就是解压了). 这些php文件你可不能乱画哦.这些文件被所有应用程序共享,也只能在你升级到新版的smarty的时候得到更新。 Smarty手册范例 2-1.Smarty库文件 Smarty.class.php Smarty_Compiler.class.php Config_File.class.php debug.tpl /core/*.php (all of them) /plugins/*.php (all of them) Smarty使用一个叫做‘SMARTY_DIR‘的php常量作为它的系统库目录。基本上,如果你的应用程序可以找到 Smarty.class.php文件,你不需要设置SMARTY_DIR,Smarty将会自己运作。但是,如果 Smarty.class.php没有在你的include_path(php.ini里的一项设置)里,或者没有在你的应用程序里设置它的绝对路径的时候,你就必须手动配置SMARTY_DIR 了(大多数程序都如此)SMARTY_DIR必须包含结尾斜杠。 这里是你在你的php脚本里创建一个smarty的应用实例的例子: require(‘Smarty.class.php‘); $smarty = new Smarty; 试着运行一下以上脚本,如果你发现"未找到Smarty.class.php 文件"的错误时,你应该这样做: Smarty手册范例 2-3.加入库文件目录的绝对路径 require(‘/usr/local/lib/php/Smarty/Smarty.class.php‘); $smarty = new Smarty; Smarty手册范例 2-4.在include_path加入库文件目录 // Edit your php.ini file, add the Smarty library // directory to the include_path and restart web server. // Then the following should work: require(‘Smarty.class.php‘); $smarty = new Smarty; Smarty手册范例 2-5.手工设置SMARTY_DIR常量 define(‘SMARTY_DIR‘,‘/usr/local/lib/php/Smarty/‘); require(SMARTY_DIR.‘Smarty.class.php‘); $smarty = new Smarty; 现在库文件已经搞定,该是设置为你的应用程序配置其他有关Smarty的目录的时候了。Smarty要求4个目录,默认下命名为:tempalates, templates_c, configs and cache。每个都是可以自定义的,可以修改Smarty类属性: $template_dir, $compile_dir, $config_dir, and $cache_dir respectively。强烈推荐你为每个用到smarty的应用程序设置单一的目录! 确定你已经知道了你的web服务器文件根目录。在我们的例子里,文件根目录是:"/web/www.mydomain.com/docs/"Smarty的4个目录 只可以被那些库文件访问,不可以被网络上的浏览器访问的目录。因此为避免任何安全问题,要求将那4个目录和网页文件目录(就是浏览器看的)分开来。
时间: 2024-10-20 10:28:13