第一個檔為 scmp.php
用於顯示新聞標題
- <?
- $out = "<title>SCMP.com</title>\r\n";
- $out .= "<b><font size=5>SCMP</font></b><br>\r\n";
- preg_match('/<td colspan=\"3\" style="padding-top: 3px; font-size:12px;font-family:Arial\;\" align=\"center\" valign=\"middle\">(.*?)<\/td>/s',$main,$issue);
- $out .="$issue[1]<hr>\r\n";
- $baseurl = 'http://www.scmp.com/rss/';
- for($i=0;$i<5;$i++){
- $url = "$baseurl"."$l[$i].xml";
- $out .= "<p><b><font color=#656565>$tt[$i]</font></b><br>\r\n";
- $content = preg_replace('/<title>(.*?)<\/title>(.*?)<link>(.*?)<\/link>/s',"<li><a href=scmp_view.php?link=$3>$1</a></li>\r\n",$content);
- $out .= $content;
- }
- }
- $out .= "<hr><img src=http://static.flickr.com/60/219160214_e6ed15d559_o.gif>";
- echo $out;
- ?>
第二個檔為 scmp_view.php (2009-3-15 更新)
用於顯示新聞內文
- <?
- ini_set('user_agent', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)');
- $link = $_GET['link'];
- $content = $match[1];
- $headline = $hl[1];
- $subheadline = $shl[1];
- $art_date = $ad[1];
- $by_line = $bl[1];
- $body = $ab[1];
- $out .= "<title>SCMP.com $headline</title>";
- $out .= "<b><font color=#656565 size=5>$headline</font></b><br>\r\n";
- $out .= "$subheadline<br>\r\n";
- $out .= "$art_date<br>\r\n";
- $out .= "$by_line<hr>\r\n";
- $out .= "$body<hr>\r\n";
- $out .= "<img src=http://static.flickr.com/60/219160214_e6ed15d559_o.gif>";
- $allowed_tags = "<u>,<b>,<li>,<br>,<hr>,<img>,<font>,<p>,<title>";
- echo $out;
- ?>
Enjoy!
請教nerver4get是如何貼出這麼漂亮的syntax highlight code with php function link的呢?
回覆刪除剛剛找了一下google還是百思不得其解,希望never4get可以指點一下 :)
請問是GeSHi做出來的效果嗎?
回覆刪除北極熊小江兄:
回覆刪除我是使用網路上的小工具
我在這篇
中有提到
供您參考 :)
oh...不能讀取內容了...
回覆刪除scmp_view.php
謝謝樓上的告知
回覆刪除原始網頁有 check user agent
scmp_view.php 我已做了修改
but without asia, world, education.
回覆刪除anyway, thanks for your effort.
再次不能讀取內容了
回覆刪除help.....
是喔...我也不能夠讀取內容
回覆刪除