当前位置: 首页 > 图文教程 > 网络编程 > PHP > 一个很简单的PHP的后端脚本,能够从(某个网中)得到最新新闻。

PHP
XML轻松学习总节篇(转贴搜集)
XML轻松学习手册(2)XML概念
XML的术语
菜鸟的PHP笔记(1,2)
菜鸟的PHP笔记3
菜鸟的PHP笔记(4)
PHP的安装与配置
APACHE中 httpd.conf 的中文详解
php5.0.4配置文件简体中文版php.ini
LIUNX9+MYSQL4.1+GD2.0+TRUETYPE+GIF SUPPORT + APACHE2.0+ + P
apache的静态/动态编译在apache+php+mysql+gd中的应用
使用PHP 5.0 轻松解析XML文档
使用PHP 5.0 轻松解析XML文档(2)
使用PHP 5.0 轻松解析XML文档(3)
使用PHP 5.0 轻松解析XML文档(4)
使用PHP 5.0 轻松解析XML文档(5)
使用PHP 5.0 轻松解析XML文档(6)
PHP程序之服务器负载测试
ORACLE PHP教程--您了解 PHP 吗?
ORACLE PHP教程--从原型到产品的最短距离

一个很简单的PHP的后端脚本,能够从(某个网中)得到最新新闻。


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 45 ::
收藏到网摘: n/a

  <?
// sunboy's data
// bi balo aruhan domdadu o los in wuber mongglo in huen egun i wuzhe  
// zhu tuhe re hu humen tai ban nai zha bolu ya !

$link_prefix    =     "&nbsp;&nbsp;o";
$link_postfix    =     "<BR>n";
$cache_file    =     "tmp/heise.cache";
$cache_time    =    3600;


$items        =    0;
$time        =    split( " ", microtime());

srand((double)microtime()*1000000);
$cache_time_rnd    =    300 - rand(0, 600);

if ((!(file_exists($cache_file))) || ((filectime($cache_file) + $cache_time - $time[1]) + $cache_time_rnd < 0) || (!(filesize($cache_file))) ) {
$fp1=fopen("http://www.ourjia.net/index.shtml", "r");
$string=fread($fp1,20000);

ereg("<!-- MITTE (NEWS) -->(.*)<!-- MITTE (NEWS-UEBERBLICK) -->",
$string, $matches);
$match=str_replace("HREF="/newsticker/","href="http://www.ourjia.net/",$matches[1]);

$exp="#newsticker/data/(.*)/">(.*</FONT></B>)#i";
preg_match_all($exp, $matches[1], $matchin);

for($i=0;$i<count($matchin[1]);$i++)
   {
$body.= "$link_prefix <a href="http://www.ourjia.net/data/".$matchin[1][$i]."/">" . $matchin[2][$i]. "</a><br>n";
   }
$body = eregi_replace( "</A></FONT></B>", "", $body);
fclose($fp1);

$fpwrite = fopen($cache_file,'w');
fputs($fpwrite,  "$body");
fclose($fpwrite);
}
include($cache_file);
?>

注意:1:这里的www.ourjia.net该为为有新闻更新系统的网站列如:
        http://www.heise.de/newsticker。  

【本文版权归作者与奥索网共同拥有,如需转载,请注明作者及出处】