&reftitle.examples;
Basic usage of this extension Each module provides two kind of APIs: a procedural one and an object oriented one. Both are actually identical and described in the corresponding document. All input strings must be in UTF-8 encoding. All output strings are also in UTF-8. Example of using the procedural API ]]> Example of using the object-oriented API getLocale(Locale::ACTUAL_LOCALE); echo "Actual locale: $al\n"; $formatter = new NumberFormatter('en_US', NumberFormatter::DECIMAL); echo $formatter->format(1234567); ?> ]]>