vi /etc/php.ini

加一行

extension=memcache.so

加入自启动

systemctl enable memcached

bed31876140648e3850c8a5c4428d6d4

yum install php

memcached 实验 (二) php程序调用_第1张图片

[root@memcache ~]# systemctl start httpd

[root@memcache ~]# systemctl httpd enable

启动下,然后加入自动启动

访问下虚拟机,已经apache起来了

http://192.168.209.147/

memcached 实验 (二) php程序调用_第2张图片


/var/www/html 目录放一个info.php和test.php来进行测试

info 内容如下

phpinfo();

?>

test 内容如下

< ?php

$mem = new Memcache;

$mem->connect(“127.0.0.1″, 11211);

$mem->set(‘key’, ‘This is a test!’, 0, 60);

$val = $mem->get(‘key’);

echo $val;

?>

< ?php

$mem = new Memcache;

$mem->connect("192.168.209.147", 11211);

$mem->set('key', 'This is a test!', 0, 60);

$val = $mem->get('key');

echo $val;

?>

http://192.168.209.147/info.php