bcompiler_write_footer -- Writes the a single character \x00 to indicate End of compiled data
Description
Warnung |
Diese Funktion ist EXPERIMENTELL. Das bedeutet, dass sich das Verhalten der Funktion, ihr Name, und ALLES andere, das hier dokumentiert ist, in zukünftigen Versions des Pakets OHNE WARNUNG ändern kann. Seien Sie gewarnt und nutzen Sie das Paket auf eigenes Risiko. |
Writes the a single character \x00 to indicate End of compiled data
Beispiel 1. bcompiler_write_footer() example <?php
$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);
?> |
|
See also: bcompiler_write_header(), bcompiler_write_header().