The Symfony Polyfill / Intl Normalizer Component
The Symfony Polyfill / Intl Normalizer Component¶
This component provides a fallback implementation for theNormalizer
class to users who run PHP versions without theintl
extension.
Installation¶
1 | $ composer require symfony/polyfill-intl-normalizer
|
Alternatively, you can clone the https://github.com/symfony/polyfill-intl-normalizer repository.
Note
If you install this component outside of a Symfony application, you must
require the vendor/autoload.php
file in your code to enable the class
autoloading mechanism provided by Composer. Read
this article for more details.
Usage¶
Once this component is installed in your application, you can use the following classes and functions, no matter if the PHP intl extension is installed or not in your server.
Provided Classes¶
Provided Functions¶
See also
The polyfill-intl-grapheme and polyfill-intl-icu components provide polyfills for other classes and functions related to the Intl PHP extension.
This work, including the code samples, is licensed under a Creative Commons BY-SA 3.0 license.