bcompiler_write_header (resource filehandle)
bcompiler_write_header
This function is EXPERIMENTAL. That means, that the behaviour of this function, the function name, in concreto ANYTHING documented here can change in a future release of this package WITHOUT NOTICE. Be warned, and use this function at your own risk.
Writes the header part of a bcompiler file.
Example 1. bcompiler_write_header() example
<?php $fh = fopen("/tmp/example","w"); bcompiler_write_header($fh); bcompiler_write_class($fh,"DB"); bcompiler_write_footer($fh); fclose($fh); ?>
See also: bcompiler_write_class(), bcompiler_write_footer().