>백엔드 개발 >PHP 튜토리얼 >new Memcached()的时候报Trying to clone an uncloneable object of class Memcached

new Memcached()的时候报Trying to clone an uncloneable object of class Memcached

WBOY
WBOY원래의
2016-06-23 13:58:231055검색

memcache的服务端安装的是memcached-1.4.5.tar.gz
我客户端安装了
memcached-2.1.0.tgz
libmemcached-1.0.18.tar.gz
现在用phpinfo能看到已经安装memcached
memcached support enabled
Version  2.1.0
libmemcached version  1.0.18
Session support  yes
igbinary support  yes
json support  no

Directive Local Value Master Value
memcached.compression_factor 1.3 1.3
memcached.compression_threshold 20480 20480
memcached.compression_type fastlz fastlz
memcached.serializer igbinary igbinary
memcached.sess_binary no value no value
memcached.sess_lock_wait 150000 150000
memcached.sess_locking 1 1
memcached.sess_prefix memc.sess.key. memc.sess.key.
但是代码调用new Memcached()的时候报Trying to clone an uncloneable object of class Memcached


回复讨论(解决方案)

在线等待高手

你试试$memcache = new Memcache;

按你的方法,报Class 'Memcache' not found,我安装的是Memcached,
现在的情况是我new,就报Trying to clone an uncloneable object of class Memcached,然后我就静态调用试试,结果说 Non-static method Memcached::get() cannot be called statically, assuming $this from incompatible context。纠结中....

有没有高手用了php memcached

结贴,没有解决问题,用Memcache了。

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.