Note: You are currently viewing documentation for Moodle 3.9. Up-to-date documentation for the latest stable version of Moodle may be available here: admin/environment/php extension/intl.

admin/environment/php extension/intl

From MoodleDocs
Revision as of 13:59, 14 September 2010 by Luis de Vasconcelos (talk | contribs) (→‎Internationalization extension)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The Internationalization extension (Intl) is a wrapper for the ICU library, a set of C/C++ and Java libraries that provide Unicode and Globalization support for software applications. It enables PHP programmers to perform UCA-conformant collation and date/time/number/currency formatting in their scripts.

To enable this extension add the following line to your php.ini file:

extension=php_intl.dll


And then set the intl.default_locale and intl.error_level directives in your php.ini file. intl.error_level is optional.


[intl]

intl.default_locale = en_utf8

intl.error_level = E_WARNING

See also

INTL Introduction

PHP Internationalization Functions

Table of locales lists the locales that you can use.