|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-08-20 01:41 UTC] aharvey@php.net
[2012-08-20 01:41 UTC] aharvey@php.net
-Status: Open
+Status: Feedback
[2013-02-18 00:35 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 20:00:01 2025 UTC |
Description: ------------ If you put locale to French (fr_FR), strftime outputs the day with a capital letter instead of all lowercase (e.g.: it outputs 'Vendredi' instead of 'vendredi'). In French, days don't have capital letters. Test script: --------------- setlocale(LC_ALL, 'fr_FR'); echo strftime("%A"); Expected result: ---------------- The current day in lowercase. Actual result: -------------- The current day with a capital letter.