Spaces for tabs

This commit is contained in:
Goran Rakic
2012-07-14 00:59:09 +02:00
parent a2e02549b0
commit be6c5f511f

View File

@@ -31,9 +31,9 @@ Example logic using APC:
$data = apc_fetch('expensive_data');
if (!$data)
{
// data not in cache, do expensive call and save for later use
$data = get_expensive_data();
apc_store('expensive_data', $data);
// data not in cache, do expensive call and save for later use
$data = get_expensive_data();
apc_store('expensive_data', $data);
}
print_r($data);