ID: 14117 Updated by: sander Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: Strings related Operating System: Win98/Linux-Conectiva PHP Version: 4.0.6 New Comment:
You should set the correct locale (see http://www.php.net/manual/en/function.setlocale.php) If that's not the case, show us your output and tell us what you exactly expect. Previous Comments: ------------------------------------------------------------------------ [2001-11-19 10:45:40] [EMAIL PROTECTED] <html> <body> <?php class texto { var $str1='', $str2='', $str3=''; } $str= new texto(); $str->str1='AÇÃO'; $str->str2=strtolower($str->str1); $str->str3=ucwords($str->str1); print("1: $str->str1 <br>". "2: $str->str2 <br>". "3: $str->str3 <br>"); ?> </body> </html> Expected $str->str3 = 'Ação', but isn't what I get. When I use this functions in strigs that are outside a object, this error don't happens. In instance: <?php $str1='AÇÃO'; $str2=strtolower($str1); $str3=ucwords($str2); ?> // ---> THIS OK * Sorry 'bout my poor english. ------------------------------------------------------------------------ Edit this bug report at http://bugs.php.net/?id=14117&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]