Anterior Arriba Siguiente

Caché - ejemplo

function gal_get_objects_from_dir($dir)
{
	$param_string=":GALERIAS-II:gal_get_objects_from_dir($dir):";	
	$objects=h_cache_get_object($param_string, __GAL_CACHE_TTL, 1, 'object', __GAL_THUMBS_DIR);
	if(!is_array($objects))
	{
		$objects=h_fs_get_file_objects_from_dir($dir,1,'gal_get_extra_object_from_file');
		h_cache_put_object($param_string, $objects, 'object', __GAL_THUMBS_DIR);
	}
	return $objects;
}