3v4l.org

run code in 300+ PHP versions simultaneously
<?php $s1 = 'O:8:"DateTime":3:{s:4:"date";s:20:"10007-06-07 03:51:49";s:13:"timezone_type";i:3;s:8:"timezone";s:3:"UTC";}'; $s2 = 'O:3:"Foo":3:{s:4:"date";s:20:"10007-06-07 03:51:49";s:13:"timezone_type";i:3;s:8:"timezone";s:3:"UTC";}'; global $foo; class Foo extends DateTime { function __wakeupss() { global $foo; $foo = $this; parent::__wakeup(); } public static function __set_state($a) { global $foo; $foo = $this; return; } } // Old test case try { unserialize( $s1 ); } catch ( Exception $e ) {} // My test case try { unserialize( $s2 ); } catch ( Exception $e ) {} var_dump( $foo );
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: Return type of Foo::__set_state($a) should either be compatible with DateTime::__set_state(array $array): DateTime, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/ln2Pj on line 15 Fatal error: Uncaught Error: Invalid serialization data for DateTime object in /in/ln2Pj:24 Stack trace: #0 [internal function]: DateTime->__unserialize(Array) #1 /in/ln2Pj(24): unserialize('O:8:"DateTime":...') #2 {main} thrown in /in/ln2Pj on line 24
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:
36.03 ms | 402 KiB | 8 Q