mirror of
https://github.com/php/php-src.git
synced 2026-04-28 10:43:30 +02:00
17 lines
314 B
PHP
17 lines
314 B
PHP
--TEST--
|
|
zend multibyte (7)
|
|
--SKIPIF--
|
|
<?php require 'skipif.inc'; ?>
|
|
--INI--
|
|
error_reporting=E_ALL & ~E_DEPRECATED
|
|
zend.multibyte=On
|
|
zend.script_encoding=ISO-8859-1
|
|
mbstring.internal_encoding=EUC-JP
|
|
--FILE--
|
|
<?php
|
|
declare(encoding="UTF-8");
|
|
var_dump(bin2hex("テスト"));
|
|
?>
|
|
--EXPECT--
|
|
string(12) "a5c6a5b9a5c8"
|