Copy the code The code is as follows:
//Start caching images
ob_start();//Enable output caching, Temporarily cache the content to be output
imagejpeg($newimage,false,$quality);//Output
$data = ob_get_contents();//Get the cache just obtained
ob_end_clean();//Clear the cache
$mem =get_memcache();//Modify it yourself
$mem->set($mem_key,$data,720000); //Save the output just obtained into memcache
echo $data;//Output the picture
Then display it like this
$mem = get_memcache();/ /Modify yourself
$data = $mem->get($mem_key);
if($data) {
echo $data;
exit( );
}
http://www.bkjia.com/PHPjc/327297.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/327297.htmlTechArticleCopy the code The code is as follows: //Start caching images ob_start();//Enable output caching, which will be output temporarily The content is cached imagejpeg($newimage,false,$quality);//Output $data = ob_ge...