3v4l.org

run code in 300+ PHP versions simultaneously
<?php $input = 'S1G5AB'; // given this $store = '5I6GAB'; // actually this $regex = array_map('trim', str_split($input)); /* $regex = implode('', array_map( function ($char) { echo $char; return $char; static $map = ['S'=>'[S5]','5'=>'[S5]','1'=>'[1I]','I'=>'[1I]','G'=>'[6G]','6'=>'[6G]']; return array_key_exists($char, $map) ? $map[$char] : $char; }. [ 'a', 'b' ] // str_split($input) )); */ var_dump($regex); echo $regex . PHP_EOL; echo (0 < preg_match("/$regex/", $store) ? 'Match' : 'No match');
Output for git.master, git.master_jit, rfc.property-hooks
array(6) { [0]=> string(1) "S" [1]=> string(1) "1" [2]=> string(1) "G" [3]=> string(1) "5" [4]=> string(1) "A" [5]=> string(1) "B" } Warning: Array to string conversion in /in/VJfiA on line 18 Array Warning: Array to string conversion in /in/VJfiA on line 19 No match

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