程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php 網頁截取新聞代碼

php 網頁截取新聞代碼

編輯:關於PHP編程

<?php function Get_news($url,$count) { $handle = fopen($url,"r");  $c = 0; while(($line = fgets($handle,1024)) && ($c<$count)) { //$ptr2= "/<a href=\"\/html\/xiaonaxinwen(.*)\">(.*)<\/a>/"; $ptr= "/<A href=\"admin\/view_n\.php\?id=(.*) target=\"_blank\";\">(.*)<\/a>/";   preg_match_all($ptr,$line,$str,PREG_SET_ORDER); if($str) { $res[$c]= strip_tags($str[0][2]); //$res[$c][1] = $url."admin/view_n.php?id=".$str[0][1]; $c = $c+1;     } print_r($res[$c]); } return $res; }         $url = "http://stu.gdmc.edu.cn/"; $count = 7; //echo"<pre>"; $result=Get_news($url,$count);       foreach ($result as $key => $value) {     echo iconv("gb2312", "UTF-8", $value)."<br/>";//     }     //print_r(Get_news($url,$count)); //echo"</pre>"; ?> 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved