bcompiler_parse_class - Reads the bytecodes of a class and calls back to a user function
Вернуться к: bcompiler Функции
bcompiler_parse_class
(PECL bcompiler >= 0.4)
bcompiler_parse_class — Reads the bytecodes of a class and calls back to a user function
Описание
$class
, string $callback
)Reads the bytecodes of a class and calls back to a user function.
Список параметров
-
class
-
The class name, as a string.
-
callback
-
Возвращаемые значения
Возвращает 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.
Вернуться к: bcompiler Функции