我的功能有问题__sleep()
。
这是我正在使用的代码。如果我__sleep()
从类中删除函数,那么一切都会按预期工作。
class Test {
private $name;
function setName($value){
$this->name = $value;
}
function getName(){
return $this->name;
}
/* Works good without this function */
public function __sleep() {
echo 'Sleep';
}
}
$obj = new Test;
$obj->setName('Juris');
apc_store('test', $obj);
$objAPC = apc_fetch('test');
// Output = Juris
echo $obj->getName();
// No output and "Call to a member function getName() on a non-object" if __sleep() function is in class. Otherwise output = Juris
echo $objAPC->getName();
为什么这段代码不起作用?使用 APC 和 有什么限制__sleep()
吗?
PHP版本:5.3.14
APC 版本:3.1.10
从答案更新:
如果我将__sleep()
功能更改为此,这将起作用
public function __sleep() {
return array('name');
}