1--TEST-- 2Scripts with flex-incompatible encoding without suitable conversion strategy 3--SKIPIF-- 4<?php 5if (!in_array("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--FILE-- 13��<?php 14echo "hello world"; 15 16--EXPECT-- 17 18Fatal error: Could not convert the script from the detected encoding "UTF-32LE" to a compatible encoding in Unknown on line 0 19