Source of: /manual/en/book.apc.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.apc.php',
1 => 'APC',
),
'up' =>
array (
0 => 'refs.basic.php.php',
1 => 'Affecting PHP\'s Behaviour',
),
'prev' =>
array (
0 => 'refs.basic.php.php',
1 => 'Affecting PHP\'s Behaviour',
),
'next' =>
array (
0 => 'intro.apc.php',
1 => 'Introduction',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div>
<h1 class="title">Alternative PHP Cache</h1>
<ul class="chunklist chunklist_book"><li><a href="intro.apc.php">Introduction</a></li><li><a href="apc.setup.php">Installing/Configuring</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="apc.requirements.php">Requirements</a></li><li><a href="apc.installation.php">Installation</a></li><li><a href="apc.configuration.php">Runtime Configuration</a></li><li><a href="apc.resources.php">Resource Types</a></li></ul></li><li><a href="apc.constants.php">Predefined Constants</a></li><li><a href="ref.apc.php">APC Functions</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="function.apc-add.php">apc_add</a> — Cache a variable in the data store</li><li><a href="function.apc-cache-info.php">apc_cache_info</a> — Retrieves cached information from APC's data store</li><li><a href="function.apc-clear-cache.php">apc_clear_cache</a> — Clears the APC cache</li><li><a href="function.apc-compile-file.php">apc_compile_file</a> — Stores a file in the bytecode cache, bypassing all filters.</li><li><a href="function.apc-define-constants.php">apc_define_constants</a> — Defines a set of constants for retrieval and mass-definition</li><li><a href="function.apc-delete.php">apc_delete</a> — Removes a stored variable from the cache</li><li><a href="function.apc-fetch.php">apc_fetch</a> — Fetch a stored variable from the cache</li><li><a href="function.apc-load-constants.php">apc_load_constants</a> — Loads a set of constants from the cache</li><li><a href="function.apc-sma-info.php">apc_sma_info</a> — Retrieves APC's Shared Memory Allocation information</li><li><a href="function.apc-store.php">apc_store</a> — Cache a variable in the data store</li></ul></li></ul></div><?php manual_footer(); ?>