Your IP : 216.73.216.245


Current Path : /home/b/o/u/bourgleram/www/398a1/
Upload File :
Current File : /home/b/o/u/bourgleram/www/398a1/memoization-mini.php.tar

home/bourgleram/www/plugins-dist/textwheel/inc/memoization-mini.php000070500000000552152525401720021664 0ustar00<?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));
}

?>