bcompiler_parse_class
(PECL bcompiler >= 0.4)
bcompiler_parse_class — Reads the bytecodes of a class and calls back to a user function
Descrizione
bool bcompiler_parse_class
( string
$class
, string $callback
)Reads the bytecodes of a class and calls back to a user function.
Elenco dei parametri
-
class -
The class name, as a string.
-
callback -
Valori restituiti
Restituisce TRUE in caso di successo, FALSE in caso di fallimento.
Esempi
Example #1 bcompiler_parse_class() example
<?php
function readByteCodes($data) {
print_r($data);
}
bcompiler_parse_class("DB","readByteCodes");
?>
Note
Avviso
Questa funzione è SPERIMENTALE. Ovvero, il comportamento di questa funzione, il nome di questa funzione, in definitiva tutto ciò che è documentato qui può cambiare nei futuri rilasci del PHP senza preavviso. Siete avvisati, l'uso di questa funzione è a vostro rischio.
Nota:
This function has been removed from bcompiler and is no longer available as of bcompiler 0.5.
There are no user contributed notes for this page.
