我正在尝试使用IntlDateFormatter类将日期和时间字符串格式化为本地(荷兰)时间格式。我使用从https://www.simonholywell.com/post/2015/07/international-php-dates-with-intl/复制粘贴到主类中的以下代码:
$DateTime = new DateTime();
$IntlDateFormatter = new IntlDateFormatter(
'es_ES',
IntlDateFormatter::FULL,
IntlDateFormatter::FULL
);
echo $IntlDateFormatter->format($DateTime);
但是我遇到以下错误:
致命错误:未捕获错误:在第69行的C:\ Users \ denni \ PhpstormProjects \ ACNOP OOP \ Main.php中找不到类'IntlDateFormatter'
错误:在第69行的C:\ Users \ denni \ PhpstormProjects \ ACNOP OOP \ Main.php中找不到类'IntlDateFormatter'
我已经尝试取消注释行;extension=php_intl.dll
的注释,使其变为extension=php_intl.dll
,但这没有帮助。
我需要做什么?
我使用PHPStorm,以防万一这很重要
谢谢。