php生成文章清單形式的靜態頁面代碼

來源:互聯網
上載者:User
關鍵字 網路程式設計 PHP教程

一,文章清單問題:
  
在資料庫中創建欄位,記錄檔案名,每生成一個檔,將自動生成的檔案名存入資料庫,對於推薦文章,只需指向存放靜態檔的指定資料夾中的該頁面即可。 利用PHP操作處理文章清單,存為字串,生成頁面時替換此字串即可。 如,在頁面中放置文章清單的表格加入標記{ articletable },而在PHP處理檔中:

Code:
$title = "拓邁國際測試範本";
$file   = "TwoMax Inter test templet,
author:_Max">Matrix@Two_Max";

 $fp          = fopen ("temp.html","r");
  $content  = fread ($fp,filesize ("temp.html"));
  $content .= str_replace ("{ file }",$file,$content);
  $content .= str_replace ("{ title }",$title,$content);
 
  //  生成清單開始
  $list = '''';
  $sql = "select id,title,filename from article" ;
  $query = mysql_query ($sql);
  while ($result = mysql_fetch_array ($query)){
     $list .= ''''.$result[''title'']. ''
'';
  }
  $content .= str_replace ("{ articletable }",$list,$content);
 
  //生成清單結束
  // echo $content;
 
  $filename = "test/test.html";
&nb sp; $handle    = fopen ($filename,"w"); 打開檔指標,創建檔
  /*
 檢查檔是否被創建且可寫
  */
  if (!is_writable ($filename)){
  &nb sp;  die ("檔:".$filename." 不可寫,請檢查其屬性後重試! ");
  }
  if (!fwrite ($handle,$content)){  //將資訊寫入檔
     die ("生成檔".$filename." 失敗! ");
  }
  fclose ($handle); //關閉指標
 
  die ("創建檔".$filename." 成功! ");
?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.