<?php $str = 'BCFSW|'; $arr = array('BF','BCF','BFS','BFW'); $str = str_split($str); Foreach($arr as $item){ $temp = str_split($item); $new[] = implode("",array_diff($str, $temp)) . implode("",array_intersect($temp, $str)); } var_dump($new);
You have javascript disabled. You will not be able to edit any code.