(PECL bcompiler >= 0.4)
bcompiler_parse_class — Reads the bytecodes of a class and calls back to a user function
Reads the bytecodes of a class and calls back to a user function.
The class name, as a string.
Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.
Пример #1 bcompiler_parse_class() example
<?php
function readByteCodes($data) {
print_r($data);
}
bcompiler_parse_class("DB","readByteCodes");
?>
Эта функция является ЭКСПЕРИМЕНТАЛЬНОЙ. Поведение этой функции, ее имя и относящаяся к ней документация могут измениться в последующих версиях PHP без уведомления. Используйте эту функцию на свой страх и риск.
Замечание: This function has been removed from bcompiler and is no longer available as of bcompiler 0.5.