16.4. Setting the Default Locale16.4.2. SolutionAt the beginning of a file loaded by the auto_prepend_file configuration directive, call setlocale( ) to set your desired locale: setlocale(LC_ALL,'es_US'); 16.4.3. DiscussionEven if you set up appropriate environment variables before you start your web server or PHP binary, PHP doesn't change its locale until you call setlocale( ). After setting environment variable LC_ALL to es_US, for example, PHP still runs in the default C locale. 16.4.4. See AlsoSection 16.3 shows how to use a particular locale; documentation on setlocale( ) at http://www.php.net/setlocale and auto_prepend_file at http://www.php.net/manual/en/configuration.directives.php#ini.auto-prepend-file. Copyright © 2003 O'Reilly & Associates. All rights reserved. |
|