0
$this->row['contents'] = strip_tags($this->row['contents']);
$this->words = explode(" ", $this->row['contents']);

key => value上面的代码应该为每个单词创建一个数组$this->row['contents']。在正常情况下,它可以正常工作,但使用如下字符串:

这需要每升 10.40 美元。

它将分开为

[0] => This
[1] => Costs U$
[2] => 10.40 per
[3] => liter.

任何想法如何解决这个问题?

4

1 回答 1

1

也许这段代码可以帮助你

$this->words = preg_split('/\s+/', $this->row['contents']);
于 2013-03-30T08:23:23.797 回答