bcompiler_read
(PECL bcompiler >= 0.4)
bcompiler_read — 从一个文件句柄中读取并创建类
说明
bool bcompiler_read
( resource $filehandle
)
从一个打开的文件句柄中读取数据,并从字节码中创建类。
参数
filehandle
fopen() 返回的文件句柄。
返回值
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
范例
Example #1 bcompiler_read() 例子
<?php
$fh = fopen("/tmp/example","r");
bcompiler_read($fh);
fclose($fh);
print_r(get_defined_classes());
?>
注释
Warning此函数是实验性的。此函数的表象,包括名称及其相关文档都可能在未来的 PHP 发布版本中未通知就被修改。使用本函数风险自担 。
Note:
请使用 include 或 require 语句解析字节码,这是种比使用本函数更轻便的方式。
请注意该函数不会执行字节码文件中包含的脚本主体代码。