3v4l.org

run code in 300+ PHP versions simultaneously
<?php error_reporting(E_ERROR | E_PARSE); class Definition implements Serializable { private $value; public function __construct($value) { $this->value = $value; } public function serialize() { return serialize($this->value); } public function unserialize($data) { $this->value = unserialize($value); } } $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, rfc.property-hooks
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:
44.03 ms | 401 KiB | 8 Q