mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
d33500ee20
__halt_compiler() patch
13 lines
139 B
PHP
13 lines
139 B
PHP
--TEST--
|
|
__HALT_COMPILER() basic test
|
|
--FILE--
|
|
<?php
|
|
|
|
print "yo!\n";
|
|
|
|
__HALT_COMPILER();
|
|
|
|
none of this should be displayed!
|
|
--EXPECT--
|
|
yo!
|