mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-15 02:16:56 +01:00
31 lines
360 B
Plaintext
31 lines
360 B
Plaintext
__halt_compiler
|
|
-----
|
|
<?php
|
|
|
|
$a;
|
|
__halt_compiler()
|
|
?>
|
|
Hallo World!
|
|
-----
|
|
array(
|
|
0: Expr_Variable(
|
|
name: a
|
|
)
|
|
1: Stmt_HaltCompiler(
|
|
remaining: Hallo World!
|
|
)
|
|
)
|
|
-----
|
|
<?php
|
|
|
|
$a;
|
|
__halt_compiler();Hallo World!
|
|
-----
|
|
array(
|
|
0: Expr_Variable(
|
|
name: a
|
|
)
|
|
1: Stmt_HaltCompiler(
|
|
remaining: Hallo World!
|
|
)
|
|
) |