mirror of
https://github.com/php/php-src.git
synced 2024-11-30 21:35:36 +08:00
22 lines
392 B
PHP
22 lines
392 B
PHP
--TEST--
|
|
Bug #69092 (Declare Encoding Compile Check Wrong)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded("mbstring")) {
|
|
die("skip Requires mbstring extension");
|
|
}
|
|
?>
|
|
--INI--
|
|
zend.multibyte=On
|
|
--FILE--
|
|
<?php
|
|
echo "Hi";
|
|
|
|
function foo() {
|
|
declare(encoding="utf-8");
|
|
}
|
|
|
|
echo "Bye"
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Encoding declaration pragma must be the very first statement in the script in %s on line %d
|