核心代碼:
1 $url="http://XXXXX/article/012.html";
2 $content=file_get_contents($url); //讀取文章頁面源代碼
3 if(preg_match("/<img.*>/",$content)){ //進行正則比對判斷是否有圖檔
4 echo "檢測到圖檔";
5 }else{
6 echo "未發現圖檔";
7 }
代碼出處:http://www.jb51.net/article/52768.htm
轉載于:https://www.cnblogs.com/wanlibingfeng/p/7721944.html