本文主要和大家介绍了php实现页面纯静态的实例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧,希望能帮助到大家。
1.先来看下面代码index.php
<?php
// 准备要展示到网页的数据
$data = array(
array('id'=>1,'msg'=>'hello java'),
array('id'=>2,'msg'=>'hello php'),
array('id'=>3,'msg'=>'hello python'),
);
// 渲染到模板
// 实际项目一般是在html里渲染
// 这里演示 希望能看懂
foreach($data as $item){
echo $item['id'].'===>'.$item['msg'].'<br/>';
}
我们可以想象访问index.php是什么一个页面效果,但是这个可不是我们想要的纯静态页面哦。
我们已经学过了php实现页面静态化的原理: http://www.jb51.net/article/116811.htm
下面来实现一下,看看需要改动哪些代码。
<?php
// 准备要展示到网页的数据
$data = array(
array('id'=>1,'msg'=>'hello java'),
array('id'=>2,'msg'=>'hello php'),
array('id'=>3,'msg'=>'hello python'),
);
// 渲染到模板
// 实际项目一般是在html里渲染
// 这里演示 希望能看懂
ob_start(); // 开始输入缓冲控制
foreach($data as $item){
echo $item['id'].'===>'.$item['msg'].'<br/>';
}
// 开始生成静态页面文件
if(file_put_contents('index.html',ob_get_contents())){
echo 'success';
}else{
echo 'error';
}
执行之后,就会生个一个index.html文件了,这就是我们真正需要的静态页面。
index.html内容如下:
1===>hello java076402276aae5dbec7f672f8f4e5cc812===>hello php076402276aae5dbec7f672f8f4e5cc813===>hello python076402276aae5dbec7f672f8f4e5cc81
然后我们在浏览器访问index.html和最初访问index.php显示的内容一样,但是区别是index.html是静态页面。
相关推荐:
php页面静态化—实现页面纯静态化的原理
以上就是php代码实现页面纯静态的详细内容。