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

Explode does not split my string because of a special character

小问题:

我想拆分一个标题,如下所示:

$text = This is a text • and this too

我尝试了以下方法:

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

但是它找不到子弹符号...所以它只是 returns 我一个包含文本的数组。我需要将它转换成另一种格式吗,或者我该如何解决这个问题?

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

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

或者

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