(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.
classThe class name, as a string.
callback
   Restituisce TRUE in caso di successo, FALSE in caso di fallimento.
  
Example #1 bcompiler_parse_class() example
<?php
function readByteCodes($data) {
    print_r($data);
}
bcompiler_parse_class("DB","readByteCodes");
?>
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.