月名の代わりに番号を取得し続けます。私は月の名前をのように7月になるようにする必要があります。。PHP_intlを使用して月の名前を表示するには?
$formatter = new \IntlDateFormatter(
"[email protected]=persian",
\IntlDateFormatter::FULL,
\IntlDateFormatter::FULL,
'Asia/Tehran',
\IntlDateFormatter::TRADITIONAL
);
$time = new \DateTime();
$formatter->setPattern('yyyy mm dd');
$formatter->format($time)
公式の文書を最初に確認してください。http://php.net/manual/en/intldateformatter.format.php –
をご覧ください。http://userguide.icu-project.org/formatparse/datetime – honarkhah