apc_inc

(PECL apc >= 3.1.1) Increase a stored number int apc_inc ( string $key [, int $step = 1 [, bool &$success ]] ) Increases a stored number. Parameters: key The key of the value being increased. step The step, or value to increase. success Optionally pass the success or fail boolean value to this

apc_load_constants

(PECL apc >= 3.0.0) Loads a set of constants from the cache bool apc_load_constants ( string $key [, bool $case_sensitive = true ] ) Loads a set of constants from the cache. Parameters: key The name of the constant set (that was stored with apc_define_constants()) to be retrieved. case_sensitive The default behaviour for constants

apc_sma_info

(PECL apc >= 2.0.0) Retrieves APC's Shared Memory Allocation information array apc_sma_info ([ bool $limited = false ] ) Retrieves APC's Shared Memory Allocation information. Parameters: limited When set to FALSE (default) apc_sma_info() will return a detailed information about each segment. Returns: Array of Shared Memory Allocation data;

apc_store

(PECL apc >= 3.0.0) Cache a variable in the data store bool apc_store ( string $key, mixed $var [, int $ttl = 0 ] ) array apc_store ( array $values [, mixed $unused = NULL [, int $ttl = 0 ]] ) Cache a variable in the data store. Note: Unlike many other mechanisms in PHP, variables stored using apc_store() will persist between requests (until the value is removed from the cache). Parameters:

APCIterator::__construct

(PECL apc >= 3.1.1) Constructs an APCIterator iterator object public APCIterator::__construct ( string $cache [, mixed $search = null [, int $format = APC_ITER_ALL [, int $chunk_size = 100 [, int $list = APC_LIST_ACTIVE ]]]] ) Constructs an APCIterator object. Parameters: cache The cache type, which will be user or file. search A

APCIterator::current

(PECL apc >= 3.1.1) Get current item public mixed APCIterator::current ( void ) Gets the current item from the APCIterator stack. Returns: Returns the current item on success, or FALSE if no more items or exist, or on failure. See also: APCIterator::next() - Iterator::current() -

APCIterator::getTotalCount

(PECL apc >= 3.1.1) Get total count public int APCIterator::getTotalCount ( void ) Get the total count. Returns: The total count. This function is currently not documented; only its argument list is available. See also: APCIterator::getTotalHits() -

APCIterator::getTotalHits

(PECL apc >= 3.1.1) Get total cache hits public int APCIterator::getTotalHits ( void ) Gets the total number of cache hits. Returns: The number of hits on success, or FALSE on failure. This function is currently not documented; only its argument list is available. See also:

APCIterator::getTotalSize

(PECL apc >= 3.1.1) Get total cache size public int APCIterator::getTotalSize ( void ) Gets the total cache size. Returns: The total cache size. This function is currently not documented; only its argument list is available. See also: APCIterator::getTotalCount() -

APCIterator::key

(PECL apc >= 3.1.1) Get iterator key public string APCIterator::key ( void ) Gets the current iterator key. Returns: Returns the key on success, or FALSE upon failure. See also: APCIterator::current() - Iterator::key() -