| Current Path : /home/b/o/u/bourgleram/www/398a1/ |
| Current File : /home/b/o/u/bourgleram/www/398a1/memoization-mini.php.tar |
home/bourgleram/www/plugins-dist/textwheel/inc/memoization-mini.php 0000705 00000000552 15252540172 0021664 0 ustar 00 <?php
if (!defined('_ECRIRE_INC_VERSION')) return;
# memoization minimale (preferer le plugin memoization)
function cache_get($key) {
return @unserialize(file_get_contents(_DIR_CACHE."wheels/".$key.".txt"));
}
function cache_set($key, $value) {
$dir = sous_repertoire(_DIR_CACHE,"wheels/");
return ecrire_fichier($dir.$key.".txt", serialize($value));
}
?>