PHP bcompiler_write_footer function
Like this blog? Consider exploring one of our sponsored banner ads...
bcompiler_write_footer
(PECL)
bcompiler_write_footer — Writes the single character \x00 to indicate End of compiled dataDescriptionbool bcompiler_write_footer ( resource filehandle )
Writes the single character \x00 to indicate End of compiled data.
filehandle
A file handle as returned by fopen().
Return Values
Returns TRUE on success or FALSE on failure.
Example 1. bcompiler_write_footer() example
$fh = fopen("/tmp/example","w"); bcompiler_write_header($fh); bcompiler_write_class($fh,"DB"); bcompiler_write_class($fh,"DB_common"); bcompiler_write_footer($fh); fclose($fh);
NotesWarning
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.
bcompiler_write_header()
About this entry
You’re currently reading “PHP bcompiler_write_footer function,” an entry on BRADINO
- Published:
- 2.26.07 / 1am
- Category:
- PHP Functions
- Tags:
No comments
Jump to comment form | comments rss [?] | trackback uri [?]