3v4l.org

run code in 300+ PHP versions simultaneously
<?php $search = preg_quote('test'); $pattern = '#([^ ]+ )?'.$search.'( [^ ]+)?#'; $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(14) "your test data" } [1]=> array(1) { [0]=> string(5) "your " } [2]=> array(1) { [0]=> string(5) " data" } } array(3) { [0]=> array(1) { [0]=> string(9) "test data" } [1]=> array(1) { [0]=> string(0) "" } [2]=> array(1) { [0]=> string(5) " data" } } array(3) { [0]=> array(1) { [0]=> string(9) "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(2) { [0]=> string(14) "your test data" [1]=> string(14) "once test here" } [1]=> array(2) { [0]=> string(5) "your " [1]=> string(5) "once " } [2]=> array(2) { [0]=> string(5) " data" [1]=> 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:
45.42 ms | 403 KiB | 8 Q