This repository has been archived on 2026-07-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
HomeIsWhereTheMoneyIs/vendor/nikic/php-parser/test/code/parser/stmt/haltCompilerOutermostScope.test
T
2017-05-24 18:35:30 -05:00

9 lines
186 B
Plaintext
Executable File

__halt_compiler can only be used from outermost scope
-----
<?php
if (true) {
__halt_compiler();
}
-----
__HALT_COMPILER() can only be used from the outermost scope from 3:5 to 3:19