mirror of
https://github.com/php/php-src.git
synced 2024-12-19 06:50:17 +08:00
14 lines
223 B
Plaintext
14 lines
223 B
Plaintext
|
--TEST--
|
||
|
__HALT_COMPILER() basic test
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
$fp = fopen(__FILE__, "r");
|
||
|
fseek($fp, __COMPILER_HALT_OFFSET__+1);
|
||
|
print fread($fp, 1000);
|
||
|
|
||
|
__HALT_COMPILER();
|
||
|
Overlay information...
|
||
|
--EXPECT--
|
||
|
Overlay information...
|