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.
PHP で日付を別の形式に変換したいと考えています。私は実際に構文を知りません。これは私のデートです。
$date = "24-Feb-2013 11:35 AM"
これが私のフォーマット「2001 年 3 月 10 日午後 5 時 16 分」です。
これを試して:
<?php $date = "24-Feb-2013 11:35 AM"; echo date("Y-m-d H:i:s", strtotime($date)); ?>
これを試して
$date = "24-Feb-2013 11:35 AM"; $timestamp = strtotime($date);
ここでもっと読む