Source of: /manual/en/book.bcompiler.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/refs.basic.php.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'en',
),
'this' =>
array (
0 => 'book.bcompiler.php',
1 => 'bcompiler',
),
'up' =>
array (
0 => 'refs.basic.php.php',
1 => 'Affecting PHP\'s Behaviour',
),
'prev' =>
array (
0 => 'function.rename-function.php',
1 => 'rename_function',
),
'next' =>
array (
0 => 'intro.bcompiler.php',
1 => 'Introduction',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div>
<h1 class="title">PHP bytecode Compiler</h1>
<ul class="chunklist chunklist_book"><li><a href="intro.bcompiler.php">Introduction</a></li><li><a href="bcompiler.setup.php">Installing/Configuring</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="bcompiler.requirements.php">Requirements</a></li><li><a href="bcompiler.installation.php">Installation</a></li><li><a href="bcompiler.configuration.php">Runtime Configuration</a></li><li><a href="bcompiler.resources.php">Resource Types</a></li></ul></li><li><a href="bcompiler.constants.php">Predefined Constants</a></li><li><a href="ref.bcompiler.php">bcompiler Functions</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="function.bcompiler-load-exe.php">bcompiler_load_exe</a> — Reads and creates classes from a bcompiler exe file</li><li><a href="function.bcompiler-load.php">bcompiler_load</a> — Reads and creates classes from a bz compressed file</li><li><a href="function.bcompiler-parse-class.php">bcompiler_parse_class</a> — Reads the bytecodes of a class and calls back to a user function</li><li><a href="function.bcompiler-read.php">bcompiler_read</a> — Reads and creates classes from a filehandle</li><li><a href="function.bcompiler-write-class.php">bcompiler_write_class</a> — Writes an defined class as bytecodes</li><li><a href="function.bcompiler-write-constant.php">bcompiler_write_constant</a> — Writes a defined constant as bytecodes</li><li><a href="function.bcompiler-write-exe-footer.php">bcompiler_write_exe_footer</a> — Writes the start pos, and sig to the end of a exe type file</li><li><a href="function.bcompiler-write-file.php">bcompiler_write_file</a> — Writes a php source file as bytecodes</li><li><a href="function.bcompiler-write-footer.php">bcompiler_write_footer</a> — Writes the single character \x00 to indicate End of compiled data</li><li><a href="function.bcompiler-write-function.php">bcompiler_write_function</a> — Writes an defined function as bytecodes</li><li><a href="function.bcompiler-write-functions-from-file.php">bcompiler_write_functions_from_file</a> — Writes all functions defined in a file as bytecodes</li><li><a href="function.bcompiler-write-header.php">bcompiler_write_header</a> — Writes the bcompiler header</li><li><a href="function.bcompiler-write-included-filename.php">bcompiler_write_included_filename</a> — Writes an included file as bytecodes</li></ul></li></ul></div><?php manual_footer(); ?>