3v4l.org

run code in 300+ PHP versions simultaneously
<?php $serialized_array = serialize(array(1234=>"foobar")); echo "Serialized Array: $serialized_array" . PHP_EOL; $array = unserialize($serialized_array); print_r($array); echo array_key_exists(1234, $array) . PHP_EOL;
Output for git.master, git.master_jit, rfc.property-hooks
Serialized Array: a:1:{i:1234;s:6:"foobar";} Array ( [1234] => foobar ) 1

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