1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-03 17:57:59 +01:00
PHP-Parser/test/code/parser/stmt/haltCompilerOffset.test

36 lines
781 B
Plaintext
Raw Normal View History

Use of __HALT_COMPILER_OFFSET__ constant
-----
<?php
var_dump(__HALT_COMPILER_OFFSET__);
__halt_compiler();
Foo
-----
array(
2017-01-19 22:25:22 +01:00
0: Stmt_Expression(
expr: Expr_FuncCall(
name: Name(
parts: array(
0: var_dump
)
)
2017-01-19 22:25:22 +01:00
args: array(
0: Arg(
value: Expr_ConstFetch(
name: Name(
parts: array(
0: __HALT_COMPILER_OFFSET__
)
)
)
2017-01-19 22:25:22 +01:00
byRef: false
unpack: false
)
)
)
)
1: Stmt_HaltCompiler(
remaining:
Foo
)
2017-01-19 22:25:22 +01:00
)