mirror of
https://github.com/php/php-src.git
synced 2024-11-29 04:46:07 +08:00
13 lines
355 B
PHP
13 lines
355 B
PHP
--TEST--
|
|
Bug #46843 (CP936 euro symbol is not converted properly)
|
|
--SKIPIF--
|
|
<?php extension_loaded('mbstring') or die('skip mbstring not available'); ?>
|
|
--FILE--
|
|
<?php
|
|
var_dump(bin2hex(mb_convert_encoding("\x80", 'UCS-2BE', 'CP936')));
|
|
var_dump(bin2hex(mb_convert_encoding("\x20\xac", 'CP936', 'UCS-2BE')));
|
|
?>
|
|
--EXPECT--
|
|
string(4) "20ac"
|
|
string(2) "80"
|