$recommend = json_decode(file_get_contents('./recommend.json'), true);
php渲染smarty模板时提示一下警告:
Warning: strftime(): It is not safe to rely on the system’s timezone settings. You are required to use the date.timezone setting 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 the timezone ‘UTC’ for now, but please set date.timezone to select your timezone. in /Users/qiudeqing/Desktop/personal-projects/smarty-template/app/libs/sysplugins/smarty_internal_templatecompilerbase.php on line 352
解决方法
在php文件中加上以下设置:
date_default_timezone_set("PRC");