-
- echo strtotime ("now"), "n";
- echo strtotime ("2000年9月10日"), "n";
- echo strtotime ("+1 day"), "n " ";
- echo strtotime ("+1 週間"), "n";
- echo strtotime ("+1 週間 2 日 4 時間 2 秒"), "n";
- echo strtotime ("次の木曜日"), " n" ";
- echo strtotime ("先週の月曜日"), "n";
- ?>
コードをコピー
例 2、
-
- $str = '良くありません';
- if (($timestamp = strtotime($str)) === -1) {
- echo "文字列 ($str) は偽です";
- } else {
- echo "$str == ".date('l dS of F Y h:i:s A',$timestamp);
- }
- ?>
-
コードをコピー
this効果は mktime() を使用した場合と同じです。
上記の紹介と例が皆様のお役に立てば幸いです。
php strtotime関数の使用法については、以下も参照してください。
PHP strtotime関数の詳細な紹介
PHPでのstrtotime関数の使用例
PHP 2038 問題の strtotime() および mktime() の Y2K38 脆弱性
phpタイムスタンプ関数strtotimeの応用例
phpにおけるstrtotimeの機能効率
|