3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Native PHP $products = array('horloges', 'media', 'gereedschap'); echo'<pre>';print_r($products); // convert to a string $string = serialize($products); echo $string; // a:3:{i:0;s:8:"horloges";i:1;s:5:"media";i:2;s:11:"gereedschap";} // you can reproduce the original variable $products = unserialize($string); echo'<pre>';print_r($products);
Output for git.master, git.master_jit, rfc.property-hooks
<pre>Array ( [0] => horloges [1] => media [2] => gereedschap ) a:3:{i:0;s:8:"horloges";i:1;s:5:"media";i:2;s:11:"gereedschap";}<pre>Array ( [0] => horloges [1] => media [2] => gereedschap )

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:
37.09 ms | 402 KiB | 8 Q