标签:could not echo png mem div not image 技术 class
1、需要安装php的Memcached扩展,具体安装步骤不做介绍了。
2、php连接memcached的mem.php 文件
<?php $memcache = new Memcached; $memcache->addServer(‘localhost‘,11211) or dir ("Could not connect"); $memcache->set(‘key‘,‘Hello world‘); $get_value = $memcache->get(‘key‘); echo $get_value; ?>
3、测试显示结果
标签:could not echo png mem div not image 技术 class
原文地址:https://www.cnblogs.com/xzlive/p/8890525.html