mirror of
https://github.com/php/php-src.git
synced 2025-01-09 20:44:33 +08:00
Do the same test as ext/standard/test/strings/strtoupper.phpt does
This commit is contained in:
parent
68a5d1bca3
commit
4758b109a5
@ -7,10 +7,14 @@ function_exists('mb_strtolower') or die("SKIP");
|
||||
--GET--
|
||||
--FILE--
|
||||
<?php
|
||||
mb_internal_encoding( 'ISO-8859-1' );
|
||||
print mb_strtolower( "ABCDEFGHIJKLMNOPQRSTUVWXYZ\n" );
|
||||
print mb_strtoupper( mb_strtolower( "ABCDEFGHIJKLMNOPQRSTUVWXYZ\n" ) );
|
||||
print mb_strtoupper( "äëï\n" );
|
||||
?>
|
||||
|
||||
--EXPECT--
|
||||
abcdefghijklmnopqrstuvwxyz
|
||||
ABCDEFGHIJKLMNOPQRSTUVWXYZ
|
||||
ÄËÏ
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user