Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 276 Bytes

File metadata and controls

17 lines (11 loc) · 276 Bytes

memcache php class

<?php

  include 'mcache.php';

  if(!$content = mcache::getInstance()->getFacebook()){
  
    $data = file_get_contents('http://www.facebook.com/');
    
    mcache::getInstance()->setFacebook($data);
    
  }else echo $content;
  
?>