3v4l.org

run code in 300+ PHP versions simultaneously
<?php $search = preg_quote('test'); $pattern = '#([^ ]+ ){0,10}'.$search.'( [^ ]+){0,10}#'; $res = preg_match_all($pattern,'write your test data here',$regs); var_dump($regs); $res = preg_match_all($pattern,'test data here',$regs); var_dump($regs); $res = preg_match_all($pattern,'write your test',$regs); var_dump($regs); $res = preg_match_all($pattern,'not found at all',$regs); var_dump($regs); $res = preg_match_all($pattern,'write your test data found more than once test here ',$regs); var_dump($regs);
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { [0]=> array(1) { [0]=> string(25) "write your test data here" } [1]=> array(1) { [0]=> string(5) "your " } [2]=> array(1) { [0]=> string(5) " here" } } array(3) { [0]=> array(1) { [0]=> string(14) "test data here" } [1]=> array(1) { [0]=> string(0) "" } [2]=> array(1) { [0]=> string(5) " here" } } array(3) { [0]=> array(1) { [0]=> string(15) "write your test" } [1]=> array(1) { [0]=> string(5) "your " } [2]=> array(1) { [0]=> string(0) "" } } array(3) { [0]=> array(0) { } [1]=> array(0) { } [2]=> array(0) { } } array(3) { [0]=> array(1) { [0]=> string(51) "write your test data found more than once test here" } [1]=> array(1) { [0]=> string(5) "once " } [2]=> array(1) { [0]=> string(5) " here" } }

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:
43.59 ms | 403 KiB | 8 Q