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.
これは私の文字列で、2013 年 8 月 20 日 10:45:05 であり、この文字列を日付形式にしたい:
2013-08-20 .
みんな助けてください。
ありがとう
このようなもの:
echo date('Y-m-d', strtotime('Tue, 20 Aug 2013 10:45:05'));
これを試して、
$d=date('Y-m-d',strtotime('Tue, 20 Aug 2013 10:45:05')); echo $d;