1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 01:18:19 +02:00

* make test pass

This commit is contained in:
Stig Bakken
2001-10-11 00:41:15 +00:00
parent bb5398c687
commit 3c98893a01
+5 -5
View File
@@ -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: æøå