3v4l.org

run code in 300+ PHP versions simultaneously
<?php error_reporting(E_ERROR | E_WARNING | E_PARSE); class Definition implements Serializable { private $value; public function __construct($value) { $this->value = $value; } public function serialize() { echo serialize([$this->value])."\n"; return serialize($this->value); } public function unserialize($data) { $this->value = unserialize($data); } } $a=new stdClass(); $d=new Definition($a); var_dump(unserialize(serialize([$d,'This text will appear twice!',$a])));
Output for git.master, git.master_jit
a:1:{i:0;O:8:"stdClass":0:{}} bool(false)
Output for rfc.property-hooks
a:1:{i:0;O:8:"stdClass":0:{}} Warning: unserialize(): Error at offset 4 of 4 bytes in /in/9hVS2 on line 13 Warning: unserialize(): Error at offset 83 of 84 bytes in /in/9hVS2 on line 19 bool(false)

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:
60.31 ms | 401 KiB | 8 Q