1--TEST-- 2Scripts with flex-incompatible encoding without suitable conversion strategy 3--SKIPIF-- 4<?php 5if (!in_array("zend.detect_unicode", array_keys(ini_get_all()))) { 6 die("skip Requires configure --enable-zend-multibyte option"); 7} 8if (extension_loaded("mbstring")) { 9 die("skip The mbstring extension cannot be present for this test"); 10} 11?> 12--INI-- 13zend.multibyte=1 14--FILE-- 15��<?php 16echo "hello world"; 17 18--EXPECT-- 19 20Fatal error: Could not convert the script from the detected encoding "UTF-32LE" to a compatible encoding in Unknown on line 0 21