1--TEST--
2zend multibyte (14)
3--SKIPIF--
4<?php require 'skipif.inc'; ?>
5--INI--
6zend.multibyte=On
7zend.script_encoding=UTF-8
8internal_encoding=UTF-8
9--FILE--
10<?php
11var_dump(substr(file_get_contents(__FILE__), __COMPILER_HALT_OFFSET__));
12var_dump(bin2hex("äëüáéú"));
13__halt_compiler();test
14test
15--EXPECT--
16string(10) "test
17test
18"
19string(24) "c3a4c3abc3bcc3a1c3a9c3ba"
20