変数 $now は、ダンプしない限り表示されません。人が住んでいます。「今は空です」という文字列はまったく表示されません。var_dump または var_exported でない限り、$now の内容は表示されません。
$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($今); これをエコーします:
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 に等しい