php-src/ext/iconv/tests/iconv002.phpt

31 lines
560 B
Plaintext
Raw Normal View History

2002-02-03 02:18:30 +00:00
--TEST--
2002-11-06 16:58:08 +00:00
iconv() test 2 (UCS4BE to ASCII)
2002-02-03 02:18:30 +00:00
--SKIPIF--
2002-11-06 16:37:10 +00:00
<?php
include('skipif.inc');
2002-11-06 16:37:10 +00:00
if (@iconv("ascii","UCS-4LE", "abcd") == '') {
die("skip conversion to UCS-4LE not supported");
}
?>
--INI--
error_reporting=2039
2002-02-03 02:18:30 +00:00
--FILE--
<?php
2002-10-29 16:28:12 +00:00
/* include('test.inc'); */
/*
Expected output:
&#97;&#98;&#99;&#100;
abcd
*/
$s = unpack("V*", iconv("ascii","UCS-4LE", "abcd"));
foreach($s as $c) { print "&#$c;"; } print "\n";
$s = pack("NNNN", 97, 98, 99, 100);
$q = iconv("UCS-4BE", "ascii", $s);
print $q; print "\n";
?>
2002-02-03 02:18:30 +00:00
--EXPECT--
&#97;&#98;&#99;&#100;
abcd