1--TEST-- 2Bug #60723 (error_log error time has changed to UTC ignoring default timezo) 3--INI-- 4date.timezone=ASIA/Chongqing 5log_errors=On 6--FILE-- 7<?php 8$dir = dirname(__FILE__); 9$log = $dir . "/tmp.err"; 10ini_set("error_log", $log); 11echo $aa; 12error_log("dummy"); 13readfile($log); 14unlink($log); 15?> 16--EXPECTF-- 17Notice: Undefined variable: aa in %sbug60723.php on line %d 18[%s ASIA/Chongqing] PHP Notice: Undefined variable: aa in %sbug60723.php on line %d 19[%s ASIA/Chongqing] dummy 20