Warning: date(): 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 D:\WWW\Conf\~db.php on line 2
<?php
echo date("m-d-Y h:m:s")."\n";
echo date("m-d-Y h:m:s",mktime(10,15,35,date("m"),date("d"),date("Y")))."\n";
echo date("m-d-Y h:m:s",mktime(10,15,35,date("m"),date("d")-30,date("Y")))."\n";
?>
<?php? function_exists(date_default_timezone_set);//在這他總是返回1,這函數(shù)是判斷這里面的字符是不是一個(gè)定義了的函數(shù)名? date_default_timezone_set("Etc/GMT");//這是格林威治標(biāo)準(zhǔn)時(shí)間,得到的時(shí)間和默認(rèn)時(shí)區(qū)是一樣的? date_default_timezone_set("Etc/GMT+8");//這里比林威治標(biāo)準(zhǔn)時(shí)間慢8小時(shí)? date_default_timezone_set("Etc/GMT-8");//這里比林威治標(biāo)準(zhǔn)時(shí)間快8小時(shí)? date_default_timezone_set('PRC');?//設(shè)置中國(guó)時(shí)區(qū)? ?>
The error message is that you did not set the time, or set the time zone incorrectly. Please check whether the date_default_timezone_set function is not defined or is wrongly defined