1 2 3 4
function cache_function($buildCallback, array $args= array (), $timeoutMinutes= 60) {
if (is_array($buildCallback)) {
$cacheKey= get_class($buildCallback[0]) . $buildCallback[1] . ':' . implode(':', $args);
...
PHP Cache any PHP function
by firesalamander.myopenid.com,
October 12, 2007 01:54,
3 refactorings
Single function that wraps ...