Home > php教程 > php手册 > php生成html文件代码

php生成html文件代码

WBOY
Release: 2016-06-13 10:09:33
Original
940 people have browsed it

php生成html文件代码有很多种方法,比较常用的一种是为静态的使用方法,但我们下面使用的是直接生成纯html文件的php代码与方法

 php生成html文件代码有很多种方法,比较常用的一种是为静态的使用方法,但我们下面使用的是直接生成纯html文件的php代码与方法,下面我们来看看

第一种方法:就是用smary的模板来生成.

require('smarty/Smarty.class.php');
$t = new Smarty;
$t->assign("title","Hello World!");
$content = $t->fetch("templates/index.htm");
//这里的 fetch() 就是获取输出内容的函数,现在$content变量里面,就是要显示的内容了
$fp = fopen("archives/2005/05/19/0001.html", "w");
fwrite($fp, $content);
fclose($fp);
?>

另一种方法是用php od_get_contents来生成
ob_start();
echo "Hello World!";
$content = ob_get_contents();//取得php页面输出的全部内容
$fp = fopen("archives/2005/05/19/0001.html", "w");
fwrite($fp, $content);
fclose($fp);

 第三种方法就是用php自然的函数fopen来直接保存.

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template