|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
当你经过一段时间的学习后就应该扩充自己的知识,多学习linux命令,但是不要在初学阶段就系统的学习linux命令。
办法一:
.代码以下:
<?php
require_once("./config/config.php");
ob_start();
$id=$_GET[id];
$sql="select*fromtable_namewhereid=$id";
$result=mysql_query($sql);
$rs=mysql_fetch_object($result);
$smarty->assign("showtitle",$rs->title);
$smarty->assign("showcontent",$rs->content);
$smarty->display("content.html");
$this_my_f=ob_get_contents();
ob_end_clean();
$filename="$id.html";
tohtmlfile_cjjer($filename,$this_my_f);
//文件天生函数
functiontohtmlfile_cjjer($file_cjjer_name,$file_cjjer_content){
if(is_file($file_cjjer_name)){
@unlink($file_cjjer_name);//存在,就删除
}
$cjjer_handle=fopen($file_cjjer_name,"w");//创立文件
if(!is_writable($file_cjjer_name)){//判别写权限
returnfalse;
}
if(!fwrite($cjjer_handle,$file_cjjer_content)){
returnfalse;
}
fclose($cjjer_handle);//封闭指针
return$file_cjjer_name;//前往文件名
}
?>
办法二:
smarty中有一个猎取模板页内容办法fetch(),它的声明本相是如许的:
.代码以下:
<?php
functionfetch($resource_name,$cache_id=null,
$compile_id=null,$display=false)
?>
第一个参数为模板称号,第二个参数为缓存的id,第三个参数为编译id,第四个参数为是不是显现模板内容.天生静态页我们就必要用到这个办法.
.代码以下:
<?php
$smarty=newSmarty();
//别的模板交换语法...
//上面这句获得页面中一切内容,注重最初一个参数为false
$content=$smarty->fetch(模板称号.tpl,null,null,false);
//上面将内容写进至一个静态文件
$fp=fopen(news.html,w);
fwrite($fp,$content);
fclose($fp);
//OK,到这里这个news.html静态页就天生了,你能够处置你下一步的事情了
?>
尽我能力帮助他人,在帮助他人的同时你会深刻巩固知识。 |
|