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-05-07」のような文字列があり、「2013 年 5 月 7 日」に任意の機能的な方法 (利用可能な場合) または可能な限り短い方法で変換したい
$dt = new DateTime('2013-05-07'); echo $dt->format('j F Y');
PHP 5.4 以降
echo (new DateTime('2013-05-07'))->format('j F Y');
PHP 日付形式
echo date('j F Y', strtotime("2013-05-07"));