3v4l.org

run code in 300+ PHP versions simultaneously
<?php $re = '/(?:\d+\.\d+)(?: \d+\.\d+){2}(?: \d+){3}\s*|\G(?!^)(\d+(\.\d+)?)\s/'; $str = '0.91 0.45 0.69 58 47 45 23 83 90 $595 NO IDL'; preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0); $result = array_map(function($x){ return $x[1]; }, array_slice($matches, 1)); var_dump($result);
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { [0]=> string(2) "23" [1]=> string(2) "83" [2]=> string(2) "90" }

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:
69.09 ms | 405 KiB | 5 Q