03c04-1.php

来自「介绍PHP5的给类型函数应用」· PHP 代码 · 共 16 行

PHP
16
字号
<?php// Discover what 8am in Tokyo relates to on the East Coast of the US// Set the default timezone to Tokyo time:date_default_timezone_set('Asia/Tokyo');// Now generate the timestamp for that particular timezone, on Jan 1st, 2000$stamp = mktime(8, 0, 0, 1, 1, 2000);// Now set the timezone back to US/Easterndate_default_timezone_set('US/Eastern');// Output the date in a standard format (RFC1123), this will print:// Fri, 31 Dec 1999 18:00:00 ESTecho '<p>', date(DATE_RFC1123, $stamp) ,'</p>';?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?