致PHP初學者:如何抓取某頁面指定內容

初學php研究了好幾個小時最後問了同事,得以解決;下面我就以我網站的一個詳情頁爲例子,給你們分享一下:
直接貼代碼,註釋寫的很清楚了php

<?php

//添加編碼格式,防止亂碼
header("content-type:text/html;charset=utf-8");
//請求頭
header('Access-Control-Allow-Origin:*');

//取得指定地址的內容,儲存至text
$text=file_get_contents('http://www.machi-machi.com/news/57.html');
    
//取得全部img標籤,儲存至二維數組match   

preg_match_all('/<div class="showContxt">(.*?)<\/div>/is', $text, $match);   

//打印出match
print_r($match[0][0]); exit;

?>
相關文章
相關標籤/搜索