|
Последние активные темы форума |
|
bcompiler_parse_class
(no version information, might be only in CVS) bcompiler_parse_class -- Reads the bytecodes of a class and calls back to a user function
Descriptionbool bcompiler_parse_class ( string class, string callback ) Замечание:
This function has been removed from bcompiler and is no
longer available as of bcompiler 0.5.
reads the bytecodes of a class and calls back to a user function
Пример 1. bcompiler_parse_class() example
<?php
function
readByteCodes
(
$data
) {
print_r
(
$data
);
}
bcompiler_parse_class
(
"DB"
,
"readByteCodes"
);
?>
|
|
|