0

我正在使用 cURL 来获取网站的内容。我想从字符串中删除所有空格和换行符。这就是我正在做的事情:

// Getting the content
$curl_handle = curl_init();
curl_setopt($curl_handle, CURLOPT_URL, $url);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, true);
$content = curl_exec($curl_handle);
curl_close($curl_handle);

// Removing html tags
$content = strip_tags($content);

// Removing whitespaces
$content = preg_replace('/\s+/', '', $content);

当我回显内容时,仅在以下特殊字符后才会出现换行符:=),.?} 我尝试删除换行符,str_replace(array("\r\n", "\r"), "\n", $content);但它不起作用。有任何想法吗?

4

0 回答 0