我正试图以纯文本的形式获取网址的内容。目前我已经设法从网址获取所有HTML内容。我想知道是否可以删除cURL中的html标签。
<?php
// put your code here
$ch = curl_init();
$url = "http://visitbirmingham.com/explore-birmingham/blog";
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
$cResult = curl_exec($ch);
curl_close($ch);
$cResult = str_replace("<", "<", $cResult);
$cResult = str_replace(">", ">", $cResult);
echo $cResult;
?>