PHP Manual: bcompiler_write_class
bcompiler_write_class
Description
bool bcompiler_write_class ( resource filehandle, string className [, string extends] )Reads the bytecodes from PHP for an existing class, and writes them to the open file handle.
Parameters
filehandleA file handle as returned by fopen().
classNameThe class name, as a string.
extends
Examples
Notes
| Warning |
This function is EXPERIMENTAL. The behaviour of this function, the name of this function, and anything else documented about this function may change without notice in a future release of PHP. Use this function at your own risk. |
Note: This function does not perform dependency checking, so make sure you write the classes in an order that will not result in an undefined class error occurring when you load it.