mirror of
https://github.com/php/php-src.git
synced 2025-01-07 19:44:02 +08:00
31 lines
560 B
PHP
31 lines
560 B
PHP
--TEST--
|
|
iconv() test 2 (UCS4BE to ASCII)
|
|
--SKIPIF--
|
|
<?php
|
|
include('skipif.inc');
|
|
if (@iconv("ascii","UCS-4LE", "abcd") == '') {
|
|
die("skip conversion to UCS-4LE not supported");
|
|
}
|
|
?>
|
|
--INI--
|
|
error_reporting=2039
|
|
--FILE--
|
|
<?php
|
|
/* include('test.inc'); */
|
|
/*
|
|
Expected output:
|
|
abcd
|
|
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";
|
|
?>
|
|
--EXPECT--
|
|
abcd
|
|
abcd
|