(PECL apc:3.0.0-3.0.9)
apc_fetch — Récupère une variable stockée dans le cache
La variable stockée en cas de succès, FALSE si une erreur survient.
Exemple #1 Exemple avec apc_fetch()
<?php
$bar = 'BAR';
apc_store('foo', $bar);
var_dump(apc_fetch('foo'));
?>
L'exemple ci-dessus va afficher :
string(3) "BAR"