解讀php生成靜態頁面的簡單實例_PHP教程
教程Tag:暫無Tag,歡迎添加,賺取U幣!
推薦:如何讓PHP支持斷點續傳文件現在的很多服務器都支持斷點續傳去下載軟件,同時很多下載軟件也是斷點續傳,怎么樣才能讓PHP也能實現斷電續傳功能呢?請先看下面的代碼。 fname = './05e58c19552bb26b158f6621a6650899'; fp = fopen(fname,'rb'); fsize = filesize(fname); if (isset(_SER
一個簡單的實例:新聞模版文件news_tmp.html:
<html>
<head>
<title>{title}</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<TABLE border=0 width=767 cellspacing="0" cellpadding="5">
<TR>
<TD>
<div align="center">{news_title}</div>
</TD>
</TR>
<TR>
<TD>
<div align="center">{news_image}</div>
</TD>
</TR>
<TR>
<TD>{news_content}</TD>
</TR>
</TABLE>
</body>
</html>
______________________________________________________________________
答7:
新聞生成文件aaa.php:
<?
//假設下面信息都來自表單
title="娛樂新聞---鄭秀文準備宣布退出娛樂圈";
news_title="鄭秀文準備宣布退出娛樂圈";
image_path=array("image/xxx.jpg","image/xxx2.jpg","image/xxx3.jpg");
news_content="事業如日方中的鄭秀文(Sammi),除是樂壇天后外,亦以五百五十萬片酬登上全港片酬最高女星之位......";
fp=@fopen("news_tmp.html","r") or die("沒有模版文件或者沒有相關權限!");
str=fread(fp,filesize("news_tmp.html"));
fclose(fp);
____________________________________________________________________
答8:
news_filename=time().".html"; //生成的新聞文件名
str=str_replace("{title}",title,str);
str=str_replace("{news_title}",news_title,str);
str=str_replace("{news_content}",news_content,str);
if(count(image_path)){
for(n=0;n<count(image_path);n++)
news_image.="<img src=".image_path[n]."><BR>";
str=str_replace("{news_image}",news_image,str);
}else
str=str_replace("{news_image}","",str);
fw=fopen(news_filename,"w");
fwrite(fw,str);
?>
簡單演示PHP如何使用模板生成靜態頁面。
模板文件templets.htm:
<html>
<head>
<title>{title}</title>
</head>
<body>
<p>Hello {hello}</p>
</body>
</html>
PHP文件代碼:
<?php
title = 'dwww';
hello = 'dwwwcn!';
file = file_get_contents(’templets.htm’);
file = str_replace(array(’{title}’,’{hello}’),array(title,hello), file);
echo file;
?>
分享:PHP判斷搜索引擎機器人Robot有朋友問到如何使用PHP去判斷是否是搜索引擎,其實PHP有個很簡單的方式去實現,通過_SERVER這個預定義變量中的_SERVER['HTTP_USER_AGENT']可以取得訪問者的屬性,具體可以看下Diiscuz!是如何判斷搜索引擎的,函數代碼如下: function getrobot() { if(!defin
相關PHP教程:
- 相關鏈接:
- 教程說明:
PHP教程-解讀php生成靜態頁面的簡單實例。