Guest User

Untitled

a guest
Jul 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2.  
  3. define('ARRAY_CACHE_FILE', dirname(__FILE__) . '/array-cache.txt');
  4.  
  5. function get_array(){
  6. if( time() - filemtime(ARRAY_CACHE_FILE) < 3600 ){
  7. return unserialize( file_get_contents(ARRAY_CACHE_FILE) );
  8. }
  9. $array = generate_array(); // ...
  10. file_put_contents( ARRAY_CACHE_FILE, serialize(array) );
  11. return $array;
  12. }
Add Comment
Please, Sign In to add comment