3v4l.org

run code in 300+ PHP versions simultaneously
<?php function regexp($string, $pattern) { return preg_match('/'.$pattern.'/', $string); } function getLeftDelimiter($string, $pattern) { $result = ''; while(1) { $current = $string; $position = strlen($string); while($position && regexp($current, $pattern)) { $position--; $current = substr($current, 0, -1); } $current = substr($string, 0, $position+1); if(regexp($current, '^('.$pattern.')$')) { $result .= $current; $string = substr($string, $position+1); } else { return $result; } } } function getRightDelimiter($string, $pattern) { $result = ''; while(1) { $current = $string; $position = 0; while($position<strlen($string) && regexp($current, $pattern)) { $position++; $current = substr($current, 1); } $current = substr($string, $position-1); if(regexp($current, '^('.$pattern.')$')) { $result = $current.$result; $string = substr($string, 0, $position-1); } else { return $result; } } } function getLeftChunk($string, $pattern) { $result = ''; $current = ''; $position= 0; while($position<strlen($string) && !regexp($current, $pattern)) { $position++; $current = substr($string, 0, $position); } $delimiter = getRightDelimiter($current, $pattern); return substr($current, 0, strlen($current)-strlen($delimiter)); } function regexpSplit($string, $pattern) { $result = []; $i = 0; while($string && ++$i<10) { $delimiter = getLeftDelimiter($string, $pattern); if($delimiter==$string) { break; } $string = substr($string, strlen($delimiter)); $chunk = getLeftChunk($string, $pattern); $string = substr($string, strlen($chunk)); $result[] = $chunk; } return $result; } $string = 'tbarbarfob12baz 56bar'; $pattern = 'bar|baz'; var_dump(regexpSplit($string, $pattern));
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { [0]=> string(1) "t" [1]=> string(5) "fob12" [2]=> string(3) " 56" }

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