How can I implement IntlDateFormatter
in Symfony 4.4.
With reference to https://symfony.com/doc/current/components/intl.html I have installed symfony/intl
Now when I use it in my code:
use Symfony\Component\Intl\DateFormatter\IntlDateFormatter;
$formatter = new IntlDateFormatter(
"de-DE",
IntlDateFormatter::FULL,
IntlDateFormatter::NONE,
"Europe/Berlin",
IntlDateFormatter::GREGORIAN,
"MMMM YYYY"
);
I am getting Cannot instantiate abstract class Symfony\Component\Intl\DateFormatter\IntlDateFormatter
. I know abstract class can not be instantiate. But I am not sure how to implement.
From documentation:
This is easier to understand if we check the source code. The class defined at
DateFormatter/IntlDateFormatter.php
is marked as abstract, but there's one implementation atResources/stubs/IntlDateFormatter.php
that looks like this:In short, the class is a drop-in replacement for builin IntlDateFormatter in the root namespace:
If you don't have the extension installed, auto-loading will load Symfony's implementation automatically.