转载请注明出处: http://qiudeqing.com/php/2015/08/18/faqs.html

如何读取json文件并解析

$recommend = json_decode(file_get_contents('./recommend.json'), true);

Warning: strftime(): It is not safe to rely on the system’s timezone settings.

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");