php-parser/test/code/prettyPrinter/stmt/haltCompiler.file-test

27 lines
219 B
Plaintext
Raw Normal View History

__halt_compiler
-----
<?php
echo 'foo';
__halt_compiler();
!!!
???
-----
<?php
echo 'foo';
__halt_compiler();
!!!
???
-----
<?php
echo 'foo';
__halt_compiler();
<?php
-----
<?php
echo 'foo';
__halt_compiler();
<?php