|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2001-03-14 11:18 UTC] jean-rene dot auger at rockdetente dot com
echo ucwords("c?line");
outputs:
C?Line
but should output:
C?line
The "?" (ascii 130) character is one of many accented characters considered valid alphabetical lettrs in the French language.
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 18:00:01 2025 UTC |
<?php echo ucwords("c?line"); ?> outputs C?line on PHP 4.0.5-dev on Win32.