php-src/ext/standard/tests/strings/ucfirst.phpt

17 lines
186 B
Plaintext
Raw Normal View History

--TEST--
ucfirst()
--FILE--
<?php
echo ucfirst("peren"), "\n";
echo ucfirst("appelen"), "\n";
echo ucfirst("ßen"), "\n";
?>
--EXPECT--
Peren
Appelen
2007-04-21 02:46:29 +00:00
ßen
--UEXPECT--
Peren
Appelen
SSen