3v4l.org

run code in 500+ PHP versions simultaneously
<?php $str = '123.23.23.4/17,'; $str .= '123.23.23.4/23,'; $str .= '123.23.23.4/8,'; $str .= '123.23.23.4/18'; $lines = explode(',', $str); foreach($lines as $line){ $parts = explode('/', $line); var_dump($parts); }
Output for git.master, git.master_jit, rfc.property-hooks
array(2) { [0]=> string(11) "123.23.23.4" [1]=> string(2) "17" } array(2) { [0]=> string(11) "123.23.23.4" [1]=> string(2) "23" } array(2) { [0]=> string(11) "123.23.23.4" [1]=> string(1) "8" } array(2) { [0]=> string(11) "123.23.23.4" [1]=> string(2) "18" }

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:
29.31 ms | 1454 KiB | 4 Q