用文字檔實現的動態即時發布新聞的程式

來源:互聯網
上載者:User
關鍵字 用文字檔實現的動態即時發布新聞的程式
動態即時發布新聞的程式,可以根據發布時間,自動地排列顯示順序。新聞檔案為儲存在指定目錄的文字檔組成,當有新聞的時候,程式會自動地將其顯示出來,並且排列在頁面的最開始部分。


News


News







































































  •    include('locationfilename.php');    function createur1($text){  //新聞的文字檔中這樣插入你的連結  //${http://mysite.ch}  //或是${http://mysite.ch|My homepage in}  //開始處理文字檔部分   $s=$text;   $a=strstr($s,'${');   if ($a){    $b=strstr($a,'}');    if ($b){     $la=strlen($a); $ls=strlen($s);     $s=substr($s,0,$ls-$la);     $a=substr($a,2);     $lb=strlen($b); $la=strlen($a);     $a=substr($a,0,$la-$lb); $b=substr($b,1);     $ta=strstr($a,"|");     if($ta){      $la=strlen($a); $lt=strlen($ta);      $linktext=substr($a,$la-$lt+1);      $a=substr($a,0,$la-$lt);     }     else{      $linktext=$a;     }    $s=$s."".$linktext."".$b;    }   }    return($s);  }  //在這裡修改你的新聞檔案存放目錄  //切記,新聞檔案必須是文字檔  $newspath="/home/htdocs/test/new/";    //設定數組  $newsfile=array();    //設定目錄把柄  $hd=dir($newspath);    //擷取全部檔案,並將其存放在數組中  while($filename=$hd->read() ){   $s=strtolower($filename);   if (strstr($s,".txt")){    //檢測最新修改日期    $lastchanged=filemtime($newspath.$filename);    $newsfile[$filename]=$lastchanged;   }  }  //檔案排序  arsort($newsfile);  //輸出檔案  for(reset($newsfile); $key=key($newsfile); next($newsfile)){   $fa=file($newspath.$key);   $n=count($fa);   PRint " ";  }  $hd->close();   ?>
    n";
      print "".date("d.m.Y - H:i:s",$newsfile[$key])."
    n";
      for($i=0; $i<$n; $i=$i+1){
       $s=chop($fa[$i]);
       $s=htmlspecialchars($s);
       $s=createur1($s);
       print $s."
    n";
      }
      print "
    相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.