is there any way to use an array as a delimiter, for example…?
$delim = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9');
$result = explode($delim, $string);
is there any way to use an array as a delimiter, for example…?
$delim = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9');
$result = explode($delim, $string);
[FPHP]preg_split[/FPHP] instead and use a simple OR expression.