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.
フォローアップ手順を使用して、mysqltabeから日付を表示しています。
<? echo $rrow[encoded_date]; ?>
これで、encoded_dateセルの形式は2013-03-2001:52:39になります。
私の質問は、時間を使わずに日付だけを抽出する方法です。
あなたはPHPでそれを行うことができます:
$yourDateTime = "2013-03-20 01:52:39"; date('Y-m-d', strtotime($yourDateTime));
使用できますDATE_FORMAT()
DATE_FORMAT()
SELECT DATE_FORMAT(dateColumn, '%Y-%m-%d') encoded_date