import zend standard tests
[hiphop-php.git] / hphp / test / zend / good / ext-standard-strings / strtoupper.php
blobaabbbfe3d638ce5a51bc99dca1df2bbbab6690d6
1 <?php
2 $chars = "äöü";
3 // Not sure which is most portable. BSD's answer to
4 // this one. A small array based on PHP_OS should
5 // cover a majority of systems and makes the problem
6 // of locales transparent for the end user.
7 setlocale(LC_CTYPE, "de_DE", "de", "german", "ge", "de_DE.ISO8859-1", "ISO8859-1");
8 echo strtoupper($chars)."\n";
9 ?>