3v4l.org

run code in 300+ PHP versions simultaneously
<?php class parentobj implements Serializable { protected $data; private $extradata; public function __construct() { $this->data = new temp("My private data"); } public function getData() { return $this->data; } public function setData($data) { $this->data = $data; } public function getExtraData(){ $this->extradata = array( 'data1','data2' ); } public function serialize() { return serialize(array( $this->data, $this->extradata, )); } public function unserialize($data) { $orgdata = unserialize($data); $this->data = $orgdata[0]; $this->extradata = $orgdata[1]; } } class childobj extends parentobj { protected $moredata; public function __construct() { return parent::__construct(); } public function getMoreData(){ $this->moredata= array( 'more_data1','more_data2' ); } public function serialize() { return serialize(array( $this->moredata, parent::serialize(), )); } public function unserialize($data) { $orgdata = unserialize($data); $this->moredata = $orgdata[1]; parent::unserialize($orgdata[2]); } } class temp { protected $name; public function __construct($Name) { $this->name = $Name; } } $obj = new childobj(); $s = serialize($obj); echo 'first serialize: '; var_dump($s); $u = unserialize($s); echo 'first unserialize: '; var_dump($u); $u->getExtraData(); $u->getMoreData(); echo 'with extradata: '; var_dump($u); $s2 = serialize($u); echo 'second serialize: '; var_dump($s2); $u2 = unserialize($s2); echo 'second unserialize: '; var_dump($u2);
Output for git.master, git.master_jit
Deprecated: parentobj implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in /in/PupgR on line 2 Deprecated: childobj implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in /in/PupgR on line 38 first serialize: string(112) "C:8:"childobj":92:{a:2:{i:0;N;i:1;s:68:"a:2:{i:0;O:4:"temp":1:{s:7:"*name";s:15:"My private data";}i:1;N;}";}}" Warning: Undefined array key 2 in /in/PupgR on line 67 Deprecated: unserialize(): Passing null to parameter #1 ($data) of type string is deprecated in /in/PupgR on line 32 Warning: Trying to access array offset on value of type bool in /in/PupgR on line 33 Warning: Trying to access array offset on value of type bool in /in/PupgR on line 34 first unserialize: object(childobj)#3 (3) { ["data":protected]=> NULL ["extradata":"parentobj":private]=> NULL ["moredata":protected]=> string(68) "a:2:{i:0;O:4:"temp":1:{s:7:"*name";s:15:"My private data";}i:1;N;}" } with extradata: object(childobj)#3 (3) { ["data":protected]=> NULL ["extradata":"parentobj":private]=> array(2) { [0]=> string(5) "data1" [1]=> string(5) "data2" } ["moredata":protected]=> array(2) { [0]=> string(10) "more_data1" [1]=> string(10) "more_data2" } } second serialize: string(147) "C:8:"childobj":126:{a:2:{i:0;a:2:{i:0;s:10:"more_data1";i:1;s:10:"more_data2";}i:1;s:54:"a:2:{i:0;N;i:1;a:2:{i:0;s:5:"data1";i:1;s:5:"data2";}}";}}" Warning: Undefined array key 2 in /in/PupgR on line 67 Deprecated: unserialize(): Passing null to parameter #1 ($data) of type string is deprecated in /in/PupgR on line 32 Warning: Trying to access array offset on value of type bool in /in/PupgR on line 33 Warning: Trying to access array offset on value of type bool in /in/PupgR on line 34 second unserialize: object(childobj)#4 (3) { ["data":protected]=> NULL ["extradata":"parentobj":private]=> NULL ["moredata":protected]=> string(54) "a:2:{i:0;N;i:1;a:2:{i:0;s:5:"data1";i:1;s:5:"data2";}}" }
Output for rfc.property-hooks
Deprecated: parentobj implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in /in/PupgR on line 2 Deprecated: childobj implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in /in/PupgR on line 38 first serialize: string(112) "C:8:"childobj":92:{a:2:{i:0;N;i:1;s:68:"a:2:{i:0;O:4:"temp":1:{s:7:"*name";s:15:"My private data";}i:1;N;}";}}" Warning: Undefined array key 2 in /in/PupgR on line 67 Deprecated: unserialize(): Passing null to parameter #1 ($data) of type string is deprecated in /in/PupgR on line 32 Warning: Trying to access array offset on false in /in/PupgR on line 33 Warning: Trying to access array offset on false in /in/PupgR on line 34 first unserialize: object(childobj)#3 (3) { ["data":protected]=> NULL ["extradata":"parentobj":private]=> NULL ["moredata":protected]=> string(68) "a:2:{i:0;O:4:"temp":1:{s:7:"*name";s:15:"My private data";}i:1;N;}" } with extradata: object(childobj)#3 (3) { ["data":protected]=> NULL ["extradata":"parentobj":private]=> array(2) { [0]=> string(5) "data1" [1]=> string(5) "data2" } ["moredata":protected]=> array(2) { [0]=> string(10) "more_data1" [1]=> string(10) "more_data2" } } second serialize: string(147) "C:8:"childobj":126:{a:2:{i:0;a:2:{i:0;s:10:"more_data1";i:1;s:10:"more_data2";}i:1;s:54:"a:2:{i:0;N;i:1;a:2:{i:0;s:5:"data1";i:1;s:5:"data2";}}";}}" Warning: Undefined array key 2 in /in/PupgR on line 67 Deprecated: unserialize(): Passing null to parameter #1 ($data) of type string is deprecated in /in/PupgR on line 32 Warning: Trying to access array offset on false in /in/PupgR on line 33 Warning: Trying to access array offset on false in /in/PupgR on line 34 second unserialize: object(childobj)#4 (3) { ["data":protected]=> NULL ["extradata":"parentobj":private]=> NULL ["moredata":protected]=> string(54) "a:2:{i:0;N;i:1;a:2:{i:0;s:5:"data1";i:1;s:5:"data2";}}" }

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
48.47 ms | 409 KiB | 8 Q