$str = "This is a string";
$words = explode(" ", $str);
工作正常,但空格仍然进入数组:
$words === array ('This', 'is', 'a', '', '', '', 'string');//true
我宁愿只使用没有空格的单词,并将有关空格数量的信息分开。
$words === array ('This', 'is', 'a', 'string');//true
$spaces === array(1,1,4);//true
刚刚添加:(1, 1, 4)
表示第一个单词后一个空格,第二个单词后一个空格,第三个单词后四个空格。
有什么办法可以快速做到吗?
谢谢你。