Web студия "GrandView"
  Главная   Написать Контакты
   
   
О проекте
Руководство php
 

apc_fetch

(PECL)

apc_fetch --  Fetch a stored variable from the cache

Описание

mixed apc_fetch ( string key )

Список параметров

key

The key used to store the value (with apc_store()).

Возвращаемые значения

The stored variable on success; FALSE on failure

Примеры

Пример 1. A apc_fetch() example

<?php
$bar
= 'BAR';
apc_store('foo', $bar);
var_dump(apc_fetch('foo'));
?>

Результат выполнения данного примера:

string(3) "BAR"

Смотрите также

apc_store()
apc_delete()



add a note add a note User Contributed Notes
apc_fetch
thijsterlouw at gmail dot com_remove_this
28-Feb-2007 01:31
As of version 3.0.13 APC (released 2007-02-24) you can perform multiple key fetches with apc_fetch. Very useful to further optimize your application!
APC changelog:
http://pecl.php.net/package-changelog.php?package=APC

example:

<?php
apc_store
('key1', 'value1');
apc_store('key2', 'value2');

$keys = array('key1','key2');
$result = apc_fetch($keys);  //fetch multiple keys at once!

var_dump($result);
?>

apc_load_constants> <apc_delete
Last updated: Sat, 27 Jan 2007
 
 
Новости
11 июля 2007
Сайт запущен
© 2007 info@grandviewstudio.com

Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/sites/grandviewstudiocom/www/65f67d67a94ad980786580ae69e11c07/sape.php on line 324

Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/sites/grandviewstudiocom/www/65f67d67a94ad980786580ae69e11c07/sape.php on line 330
Z058440144362 Z348613067571