变量 $now 不会显示,除非它被转储。它的人口。它根本不显示“现在为空”字符串。它不会显示 $now 中的内容,除非它是 var_dump 或 var_exported。
$ipData = json_decode( $ttt, true);
$now="";
if ($ipData['timezone']) {
$tz = new DateTimeZone( $ipData['timezone']);
$now = new DateTime( 'now', $tz); // DateTime object corellated to user's timezone
} else {
// we can't determine a timezone - do something else...
}
if($now==""){echo "now is empty";}
echo "<br />
<br />
".$now->timezone.$now->date;
var_dump($now);
}
if(isset($now)){echo "It is set.";} 它肯定是设置的,虽然我在实际调用它之前将它设置为 "",所以不管它被初始化了什么。
甚至删除 $now=""; 表明它已初始化。var_dump($now); 呼应这个:
object(DateTime)#30 (3) { ["date"]=> string(19) "2013-05-06 22:52:29" ["timezone_type"]=> int(3) ["timezone"]= > string(16) "America/New_York" } 在 var_dump $now->timezone 等于 America/New_York 之后