php で日付をタイムスタンプに変換する方法: まず PHP サンプル ファイルを作成し、次に「echo strtotime("now"), "\n";」メソッドを使用して日付をタイムスタンプに変換します。
推奨: 「PHP ビデオ チュートリアル 」
strotime 関数を使用します。コードは次のとおりです。
<?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"; echo strtotime("20170808 23:00:01"), "\n"; ?>
拡張情報:
PHP strtotime() 関数
1.strtotime、アメリカ英語形式の時刻文字列を変換できる関数。
2.strtotime() は、英語の自然言語で特定の瞬間のタイムスタンプを作成できます
3. 関数構文: int strtotime(string $time[,int $now])
4. 機能: 米国英語形式の日付と時刻の文字列を UNIX タイムスタンプに変換します。
以上がPHPの日付のタイムスタンプを変換する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。