I'm trying to split a string into an array. I've tried str_split() but the problem is that characters like "äüöÄÜÖß" don't work (they become questionmarks)
So I'm trying to do the same with mb_split(), but I don't know how to get the right Regex for it.
Can you please help me?
Here is the code:
$arr = mb_split("\.", $str);