由于特殊字符,爆炸不会拆分我的字符串

时间:2015-02-17 19:08:42

标签: php unicode explode

简短的问题:

我想分割一个看起来像这样的标题:

$text = This is a text • and this too

我尝试了以下内容:

$arry = explode('•',$text);

但它无法找到Bullet符号......所以它只返回一个包含Text的数组。我是否需要将其转换为其他格式,或者如何解决此问题?

1 个答案:

答案 0 :(得分:5)

根据您的编码,尝试类似:

explode(chr(149), $text);  //for ISO-8859-1

或者

explode(utf8_encode('•'), $text);  //for UTF-8