mirror of
https://github.com/php/php-src.git
synced 2026-03-26 09:12:14 +01:00
MFH: fix #39903 (Notice message when executing __halt_compiler() more than once)
This commit is contained in:
2
NEWS
2
NEWS
@@ -14,6 +14,8 @@ PHP NEWS
|
||||
- Fixed the validate email filter so that the letter "v" can also be used in
|
||||
the user part of the email address. (Derick)
|
||||
|
||||
- Fixed bug #39903 (Notice message when executing __halt_compiler() more than
|
||||
once). (Tony)
|
||||
- Fixed bug #39869 (safe_read does not initialize errno).
|
||||
(michiel at boland dot org, Dmitry)
|
||||
- Fixed bug #39850 (SplFileObject throws contradictory/wrong error messages
|
||||
|
||||
@@ -162,7 +162,7 @@ top_statement:
|
||||
statement
|
||||
| function_declaration_statement { zend_do_early_binding(TSRMLS_C); }
|
||||
| class_declaration_statement { zend_do_early_binding(TSRMLS_C); }
|
||||
| T_HALT_COMPILER '(' ')' ';' { REGISTER_MAIN_LONG_CONSTANT("__COMPILER_HALT_OFFSET__", zend_get_scanned_file_offset(TSRMLS_C), CONST_CS); YYACCEPT; }
|
||||
| T_HALT_COMPILER '(' ')' ';' { zval c; if (zend_get_constant("__COMPILER_HALT_OFFSET__", sizeof("__COMPILER_HALT_OFFSET__") - 1, &c TSRMLS_CC)) { zval_dtor(&c); zend_error(E_COMPILE_ERROR, "__HALT_COMPILER() can only be used once per request"); } else { REGISTER_MAIN_LONG_CONSTANT("__COMPILER_HALT_OFFSET__", zend_get_scanned_file_offset(TSRMLS_C), CONST_CS); } YYACCEPT; }
|
||||
;
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user