apc_load_constants PHP Funktionen : PHP Übersicht : PHP Manual

apc_load_constants

PHP Function apc_load_constants / PHP Funktion apc_load_constants

phplist » Webkatalog Script - Link Script » PHP Function Coder » apc_load_constants
PHP Funktion
apc_load_constants ( phplist Code 100% Relevanz )
Rubrik
Alternative PHP Cache
Kurzform
apc_load_constants -- Loads a set of constants from the cache
Vorschau
...apc_load_constants apc_load_constants (PECL) apc_load_constants -- Loads a set of constants from the cache Beschreibung bool apc_load_constants ( string key [, bool case_sensitive] ) Parameter Liste key The name of the constant set (that was stored with apc_define_constants() ) to be retrieved. case_sensitive The default behaviour for constants is to be ...
PHP Manual
[ apc_load_constants php.net ]

PHP Funktion
apc_define_constants ( phplist Code 79% Relevanz )
Rubrik
Alternative PHP Cache
Kurzform
apc_define_constants -- Defines a set of constants for later retrieval and mass-definition
Vorschau
...be passed as the constants parameter, effectively clearing the stored value(s). Parameter Liste key The key serves as the name of the constant set being stored. This key is used to retrieve the stored constants in apc_load_constants() . constants An associative array of constant_name => value pairs. The constant_name must follow the normal constant naming rules. value must evaluate to a scalar value. case_sensitive The default behaviour ...
PHP Manual
[ apc_define_constants php.net ]

PHP Funktion
apc_sma_info ( phplist Code 47% Relevanz )
Rubrik
Alternative PHP Cache
Kurzform
apc_sma_info -- Retrieves APC's Shared Memory Allocation information
Vorschau
...] => 31457280 [avail_mem] => 31448408 [block_lists] => Array ( [0] => Array ( [0] => Array ( [size] => 31448408 [offset] => 8864 ) ) ) ) Siehe auch APC configuration directives apc_load_constants apc_store...
PHP Manual
[ apc_sma_info php.net ]

PHP Funktion
apc_fetch ( phplist Code 37% Relevanz )
Rubrik
Alternative PHP Cache
Kurzform
apc_fetch -- Fetch a stored variable from the cache
Vorschau
... <?php $bar = 'BAR' ; apc_store ( 'foo' , $bar ); var_dump ( apc_fetch ( 'foo' )); ?> Das oben gezeigte Beispiel erzeugt folgendeAusgabe: string(3) "BAR" Siehe auch apc_store() apc_delete() apc_delete apc_load_constants...
PHP Manual
[ apc_fetch php.net ]

PHP Funktion
Alternative PHP Cache ( phplist Code 26% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... the APC cache apc_define_constants -- Defines a set of constants for later retrieval and mass-definition apc_delete -- Removes a stored variable from the cache apc_fetch -- Fetch a stored variable from the cache apc_load_constants -- Loads a set of constants from the cache apc_sma_info -- Retrieves APC's Shared Memory Allocation information apc_store -- Cache a variable in the data store virtual apc_cache_info...
PHP Manual
[ Alternative PHP Cache php.net ]