mirror of
https://github.com/php/php-src.git
synced 2024-11-30 13:25:43 +08:00
* make test pass
This commit is contained in:
parent
bb5398c687
commit
3c98893a01
@ -7,12 +7,12 @@ iconv test
|
||||
--FILE--
|
||||
<?php
|
||||
echo "iconv extension is available\n";
|
||||
$test = "Stig S誥her Bakken";
|
||||
print "$test\n";
|
||||
printf("%s\n", iconv("iso-8859-1", "utf-8", $test));
|
||||
$test = "ćřĺ";
|
||||
printf("ISO-8859-1: %s\nUTF-8: %s\n",
|
||||
$test, iconv("ISO-8859-1", "UTF-8", $test));
|
||||
|
||||
?>
|
||||
--EXPECT--
|
||||
iconv extension is available
|
||||
Stig S誥her Bakken
|
||||
Stig Sテヲther Bakken
|
||||
ISO-8859-1: ćřĺ
|
||||
UTF-8: Ìøü
|
||||
|
Loading…
Reference in New Issue
Block a user