1--TEST-- 2zend multibyte (12) 3--EXTENSIONS-- 4mbstring 5--INI-- 6zend.multibyte=1 7--FILE-- 8<?php 9declare(encoding="ISO-8859-15"); 10echo 1; 11declare(encoding="ISO-8859-1"); 12?> 13--EXPECTF-- 14Fatal error: Encoding declaration pragma must be the very first statement in the script in %s on line 4 15