删除cURL中的html标记

时间:2017-02-19 18:27:13

标签: php html curl

我正试图以纯文本的形式获取网址的内容。目前我已经设法从网址获取所有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("<", "&lt;", $cResult);
    $cResult = str_replace(">", "&gt;", $cResult);

    echo  $cResult;

    ?>

1 个答案:

答案 0 :(得分:2)

查看php函数strip_tags

echo strip_tags($cResult);