php-parser/test/code/parser/stmt/haltCompilerOffset.test

37 lines
812 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(
name: null
2017-01-19 22:25:22 +01:00
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
)