程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 是一個設計將LinuxFreak.org新聞標題放置到你的網站的PHP腳本程序。

是一個設計將LinuxFreak.org新聞標題放置到你的網站的PHP腳本程序。

編輯:關於PHP編程

// bi bolo monggole huen !
//
// v2.0.5
// // include("linuxfreak.php3");
// ?>
// dreamphp boy = sunboy
$link_prefix = "  o ";
$link_postfix = "
n";
$cache_file = "/tmp/linuxfreak2.cache";
$cache_time = 1200;
$max_items = 8;
$target = "_top";
// End of customizations
$backend = "http://www.linuxfreak.org/backend/linuxfreak.rdf";
$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))) ) {
$fpread = fopen($backend, r);
if(!$fpread) {
} else {
$fpwrite = fopen($cache_file, w);
if(!$fpwrite) {
} else {
while(! feof($fpread) ) {
$buffer = ltrim(Chop(fgets($fpread, 256)));
if (($buffer == "") && ($items < $max_items)) {
$title = ltrim(Chop(fgets($fpread, 256)));
$link = ltrim(Chop(fgets($fpread, 256)));
$title = ereg_replace( "", "", $title ); <br> $title = ereg_replace( "", "", $title );
$link = ereg_replace( "", "", $link );
$link = ereg_replace( "", "", $link );
fputs($fpwrite, "$link_prefix$title$link_postfix");
$items++;
}
}
}
fclose($fpread);
}
fclose($fpwrite);
}
if (file_exists($cache_file)) {
include($cache_file);
}
?>
【本文版權歸作者與奧索網共同擁有,如需轉載,請注明作者及出處】

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