3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Source: https://bugs.php.net/bug.php?id=63369 class bar1 { function __sleep() { foo(); } } class foo1 { function __sleep() { var_dump(serialize(array("test", "1", 234))); var_dump(serialize(new bar1)); } } $o = new foo1; var_dump(unserialize('O:8:"stdclass":0:{}')); //to clear BG(serialize_lock) var_dump(serialize($o));
Output for git.master, git.master_jit, rfc.property-hooks
object(stdClass)#2 (0) { } string(43) "a:3:{i:0;s:4:"test";i:1;s:1:"1";i:2;i:234;}" Fatal error: Uncaught Error: Call to undefined function foo() in /in/scVOS:6 Stack trace: #0 [internal function]: bar1->__sleep() #1 /in/scVOS(13): serialize(Object(bar1)) #2 [internal function]: foo1->__sleep() #3 /in/scVOS(20): serialize(Object(foo1)) #4 {main} thrown in /in/scVOS on line 6
Process exited with code 255.

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