Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 278 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 278 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;
  
?>