askew0

Untitled

May 19th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2. // try retrieving $data from cache
  3. $data = $cache->get($key);
  4.  
  5. if ($data === false) {
  6.  
  7.     // $data is not found in cache, calculate it from scratch
  8.  
  9.     // store $data in cache so that it can be retrieved next time
  10.     $cache->set($key, $data);
  11. }
  12.  
  13. // $data is available here
Advertisement
Add Comment
Please, Sign In to add comment