apc_store PHP Funktionen : PHP Übersicht : PHP Manual

apc_store

PHP Function apc_store / PHP Funktion apc_store

phplist » Webkatalog Script - Link Script » PHP Function Coder » apc_store
PHP Funktion
apc_store ( phplist Code 100% Relevanz )
Rubrik
Alternative PHP Cache
Kurzform
apc_store -- Cache a variable in the data store
Vorschau
...apc_store apc_store (PECL) apc_store -- Cache a variable in the data store Beschreibung bool apc_store ( string key, mixed var [, int ttl] ) Anmerkung: Unlike many other mechanisms in PHP, variables stored using apc_store() will persist between requests (until the value is removed from the cache). Parameter Liste key Store the variable using this name. key s are cache-unique, so storing a second value with the same key will overwrite ...
PHP Manual
[ apc_store php.net ]

PHP Funktion
apc_sma_info ( phplist Code 57% Relevanz )
Rubrik
Alternative PHP Cache
Kurzform
apc_sma_info -- Retrieves APC's Shared Memory Allocation information
Vorschau
... [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 56% Relevanz )
Rubrik
Alternative PHP Cache
Kurzform
apc_fetch -- Fetch a stored variable from the cache
Vorschau
...apc_fetch apc_fetch (PECL) apc_fetch -- Fetch a stored variable from the cache Beschreibung mixed apc_fetch ( string key ) Parameter Liste key The key used to store the value (with apc_store() ). Rückgabewerte The stored variable on success; FALSE on failure Beispiele Beispiel 1. A apc_fetch() example <?php $bar = 'BAR' ; apc_store ( 'foo' , $bar ); var_dump ( apc_fetch ( 'foo' )); ?> Das oben ...
PHP Manual
[ apc_fetch php.net ]

PHP Funktion
apc_delete ( phplist Code 53% Relevanz )
Rubrik
Alternative PHP Cache
Kurzform
apc_delete -- Removes a stored variable from the cache
Vorschau
...apc_delete apc_delete (PECL) apc_delete -- Removes a stored variable from the cache Beschreibung bool apc_delete ( string key ) Parameter Liste key The key used to store the value (with apc_store() ). Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Beispiele Beispiel 1. A apc_delete() example <?php $bar = 'BAR' ; apc_store ( 'foo' , $bar ); apc_delete ( 'foo' ); // this is obviously useless in ...
PHP Manual
[ apc_delete php.net ]

PHP Funktion
Alternative PHP Cache ( phplist Code 20% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... 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 ]

PHP Funktion
Advanced PHP debugger ( phplist Code 20% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... debugging level apd_set_socket_session_trace -- Starts the remote session debugging override_function -- Overrides built-in functions rename_function -- Renames orig_name to new_name in the global function table apc_store apd_breakpoint...
PHP Manual
[ Advanced PHP debugger php.net ]