Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのような文字列を持っています:Thu, 27 May 2010 07:00:00 GMT
Thu, 27 May 2010 07:00:00 GMT
UNIXタイムスタンプに変換したい
何か方法はありますか?
echo strtotime('Thu, 27 May 2010 07:00:00 GMT');
http://php.net/manual/en/function.strtotime.php
はい、方法があります!実際、それを行うには複数の方法があります!;)
strtotime();を使用できます。
$time_en = "Thu, 27 May 2010 07:00:00 GMT" $time = strtotime($time_en);
http://fr2.php.net/manual/fr/function.strtotime.php