mirror of
https://github.com/php/php-src.git
synced 2026-04-17 04:51:03 +02:00
15 lines
244 B
PHP
15 lines
244 B
PHP
--TEST--
|
|
zend multibyte (3)
|
|
--SKIPIF--
|
|
<?php require 'skipif.inc'; ?>
|
|
--INI--
|
|
zend.multibyte=On
|
|
zend.script_encoding=UTF-8
|
|
mbstring.internal_encoding=EUC-JP
|
|
--FILE--
|
|
<?php
|
|
var_dump(bin2hex("テスト"));
|
|
?>
|
|
--EXPECT--
|
|
string(12) "a5c6a5b9a5c8"
|