PHP 7.0.6 Released

Examples

Table of Contents

User Contributed Notes

swapniltiwhane at gmail dot com
1 year ago
$memcache = new Memcache;  //initialised memcahe
@$memcache->connect("127.0.0.1",11211);  // connect memcahe server
$cache = getCache(md5("mysql_query" . $sql));
//get sql query if already cached in memcahe
To Top