bug69092.phpt 318 B

123456789101112131415161718
  1. --TEST--
  2. Bug #69092 (Declare Encoding Compile Check Wrong)
  3. --EXTENSIONS--
  4. mbstring
  5. --INI--
  6. zend.multibyte=On
  7. --FILE--
  8. <?php
  9. echo "Hi";
  10. function foo() {
  11. declare(encoding="utf-8");
  12. }
  13. echo "Bye"
  14. ?>
  15. --EXPECTF--
  16. Fatal error: Encoding declaration pragma must be the very first statement in the script in %s on line %d