1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
--TEST--
__sleep() returning undefined declared properties
--FILE--
<?php
class Test {
public $pub;
protected $prot;
private $priv;
public function __construct() {
unset($this->pub, $this->prot, $this->priv);
}
public function __sleep() {
return ['pub', 'prot', 'priv'];
}
}
var_dump(serialize(new Test));
?>
--EXPECTF--
Warning: serialize(): "pub" returned as member variable from __sleep() but does not exist in %s on line %d
Warning: serialize(): "prot" returned as member variable from __sleep() but does not exist in %s on line %d
Warning: serialize(): "priv" returned as member variable from __sleep() but does not exist in %s on line %d
string(15) "O:4:"Test":0:{}"
|