From:             [EMAIL PROTECTED]
Operating system: don\'t care
PHP version:      4.1.1
PHP Bug Type:     Documentation problem
Bug description:  Example is wrong

http://download.php.net/manual/en/function.strftime.php

This is a mistake.
            print (strftime ("%A, in French "));
            setlocale ("LC_TIME", "fr_CA");

fr is the French language
CA is a country, Canada in this case.
So, fr_CA is likely Quebec Time or Eastern Time.

This example should be replaced with:

            print (strftime ("%A, in French "));
            setlocale ("LC_TIME", "fr_FR");

Denis

-- 
Edit bug report at: http://bugs.php.net/?id=14742&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to