使用smarty模板出错,找了很久
<?php
incldue("smarty_inc.php");//包含smarty类的文件
$name="php100中文站";
$smarty->config_dir="Smarty/Config_File.class.php"; //目录变量
$smarty->caching=false;//是否用于缓存,项目在调试期间不建议缓存;
$smarty->template_dir="./templates";//设置模板目录
$smarty->compile_dir=="./templates_c";//设置编译目录
$smarty->cache_dir="./smarty_cache";//缓存文件夹
//左右边界符,默认为{},但实际上应用当中容易与JavaScript相冲突
$smarty->left_delimiter="{";
$smarty->right_delimiter="}";
?>
建议检查一下smarty_inc.php中的 include_once("smarty/Smarty.class.php"); 路径是否正确
谢谢,路径正确,我重新复制了个lib 又可以了