1--TEST--
2zend multibyte (13)
3--SKIPIF--
4<?php require 'skipif.inc'; ?>
5--INI--
6zend.multibyte=On
7zend.script_encoding=UTF-8
8internal_encoding=ISO-8859-1
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(12) "e4ebfce1e9fa"
20