mirror of
https://github.com/php/php-src.git
synced 2026-04-19 22:11:12 +02:00
15 lines
246 B
PHP
15 lines
246 B
PHP
--TEST--
|
|
zend multibyte (4)
|
|
--SKIPIF--
|
|
<?php require 'skipif.inc'; ?>
|
|
--INI--
|
|
zend.multibyte=On
|
|
zend.script_encoding=CP932
|
|
mbstring.internal_encoding=UTF-8
|
|
--FILE--
|
|
<?php
|
|
var_dump(bin2hex("テスト"));
|
|
?>
|
|
--EXPECT--
|
|
string(18) "e38386e382b9e38388"
|