关于smarty问题,求高手指点!!谢谢!!
求各位高手指点!不胜感激!!!
第一次接触smarty,第一次使用时报错;浏览器显示如下: 然而刷新一下提示信息就没有了,浏览器还是什么都没有输出!
strict standards: strftime() [function.strftime]: it is not safe to rely
on the system's timezone settings. please use the date.timezone setting,
the tz environment variable or the date_default_timezone_set() function.
in case you used any of those methods and you are still getting this
warning, you most likely misspelled the timezone identifier. we selected
'utc' for '8.0/no dst' instead in
c:\appserv\www\smarty\smarty\smarty_compiler.class.php on line 400
配置如下:
smarty_inc.php
include_once(smarty/smarty.class.php); //包含smarty类文件
$smarty = new smarty(); //建立smarty实例对象$smarty
$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 = }>;
?>
index.php
include(smarty_inc.php);
$name=初使smarty;
$smarty->assign(title,$naem);
$smarty->display(index.html);
?>
index.html
------解决方案--------------------
没有设置timezone,打开的php.ini文件修改
date.timezone=asia/shanghai,然后重启webserver
------解决方案--------------------
那是因为没有设置默认时区,在php文件开头加上:
php codedate_default_timezone_set('prc');
------解决方案--------------------
或者这样
php codedate_default_timezone_set('asia/shanghai');include_once(smarty/smarty.class.php); ......
------解决方案--------------------
这不是 smarty 的错,而是你的php环境没有设置好
php.ini 中 date.timezone 设置时区
或在程序中 date_default_timezone_set 函数设置时区