|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-08-05 21:00 UTC] tony2001@php.net
[2005-08-06 11:59 UTC] nlopess@php.net
[2005-08-06 12:38 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 01 19:00:01 2025 UTC |
Description: ------------ setlocale used from apache module seems to work however using the same setlocale setlocale( LC_TIME, 'nl_NL' ); in a php script started from the command line does not work (i.e. month names are not NL but remain EN Reproduce code: --------------- <?php setlocale( LC_TIME, 'nl_NL' ); print( date('F')."\n" ); ?> produces August and not Augustus Expected result: ---------------- Should output Augustus