PHP の時刻変換関数
PHP の時刻変換関数は「strtotime()」です。この関数の機能は、任意の時刻を変換することです。英語のテキスト 日付または時刻の説明は Unix タイムスタンプに解析され、その構文は "strtotime(time,now)" です。関数は、成功した場合はタイムスタンプを返し、それ以外の場合は FALSE を返します。
簡単な例
<?php echo strtotime("now"), "\n"; echo strtotime("10 September 2000"), "\n"; echo strtotime("+1 day"), "\n"; echo strtotime("+1 week"), "\n"; echo strtotime("+1 week 2 days 4 hours 2 seconds"), "\n"; echo strtotime("next Thursday"), "\n"; echo strtotime("last Monday"), "\n"; ?>
障害チェック
<?php $str = 'Not Good'; // previous to PHP 5.1.0 you would compare with -1, instead of false if (($timestamp = strtotime($str)) === false) { echo "The string ($str) is bogus"; } else { echo "$str == " . date('l dS of F Y h:i:s A', $timestamp); } ?>
推奨チュートリアル: 「PHP チュートリアル##」 #》
以上がPHPの時刻変換関数の使い方は?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。