3v4l.org

run code in 300+ PHP versions simultaneously
<?php $input = 'S1G5AB'; // given this $store = '5I6GAB'; // actually this $regex = str_replace(['S','5','G','6','1','I'], ['[S5]','[S5]','[G6]','[G6]','[I1]','[I1]'], $input);echo $regex;echo (0 < preg_match("/$regex/", $store) ? 'Match' : 'No match');

preferences:
33.09 ms | 402 KiB | 5 Q