__halt_compiler
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
__halt_compiler — 中斷編譯器的執行
說明
__halt_compiler(): void
中斷編譯器的執行。常用於在PHP指令碼內嵌入數據,類似於安裝檔案。
可以通過常量 __COMPILER_HALT_OFFSET__
獲取數據開始位元組所在的位置,且該常量僅被定義于使用了__halt_compiler的檔案。
返回值
沒有返回值。
範例
示例 #1 __halt_compiler() 例子
<?php
// open this file
$fp = fopen(__FILE__, 'r');
// seek file pointer to data
fseek($fp, __COMPILER_HALT_OFFSET__);
// and output it
var_dump(stream_get_contents($fp));
// the end of the script execution
__halt_compiler(); the installation data (eg. tar, gz, PHP, etc.)
註釋
注意:
__halt_compiler() 僅能夠在最外層使用。