apc_fetch PHP Funktionen : PHP Übersicht : PHP Manual

apc_fetch

PHP Function apc_fetch / PHP Funktion apc_fetch

phplist » Webkatalog Script - Link Script » PHP Function Coder » apc_fetch
PHP Funktion
apc_fetch ( phplist Code 100% 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...
PHP Manual
[ apc_fetch php.net ]

PHP Funktion
apc_delete ( phplist Code 63% Relevanz )
Rubrik
Alternative PHP Cache
Kurzform
apc_delete -- Removes a stored variable from the cache
Vorschau
... , 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 this form ?> Siehe auch apc_store() apc_fetch() apc_define_constants apc_fetch...
PHP Manual
[ apc_delete php.net ]

PHP Funktion
apc_store ( phplist Code 56% Relevanz )
Rubrik
Alternative PHP Cache
Kurzform
apc_store -- Cache a variable in the data store
Vorschau
...fails to exist in the cache (clear, restart, etc.). Rückgabewerte Gibt bei Erfolg TRUE , im Fehlerfall FALSE . Beispiele Beispiel 1. A apc_store() example <?php $bar = 'BAR' ; apc_store ( 'foo' , $bar ); var_dump ( apc_fetch ( 'foo' )); ?> Das oben gezeigte Beispiel erzeugt folgendeAusgabe: string(3) "BAR" Siehe auch apc_fetch() apc_delete() apc_sma_info Advanced PHP debugger...
PHP Manual
[ apc_store php.net ]

PHP Funktion
apc_load_constants ( phplist Code 37% Relevanz )
Rubrik
Alternative PHP Cache
Kurzform
apc_load_constants -- Loads a set of constants from the cache
Vorschau
... ); apc_load_constants ( 'numbers' ); echo ONE , TWO , THREE ; ?> Das oben gezeigte Beispiel erzeugt folgendeAusgabe: 123 Siehe auch apc_define_constants() define() constant() Or the PHP constants reference apc_fetch apc_sma_info...
PHP Manual
[ apc_load_constants php.net ]

PHP Funktion
Alternative PHP Cache ( phplist Code 27% Relevanz )
Rubrik
Funktionsreferenz
Kurzform
-----
Vorschau
... meta-data) from APC's data store apc_clear_cache -- Clears 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 ...
PHP Manual
[ Alternative PHP Cache php.net ]