我正在使用 cURL 和 php 来用 DOM 解析一些 html 内容。然后我将内容作为字符串放入变量中并创建一个数组。
这是我的问题,我有类似的东西
Array (
[firstname] => John
[lastname] =>
Doe
[occupation] =>
programmer
[location] => not far away
)
<br>
我得到了一些不是由html 中的标签引起的换行符。我可以在代码中看到(空白)换行符,但没有标签。
我尝试像str_replace('\s', '', $firstname)
在将其放入关联数组之前一样使用代码,但它不起作用。我将添加preg_replace('\s','', $firstname)
返回NULL