php实现页面纯静态的实例代码

时间:2021-05-26

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实现页面静态化的原理: https://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 java<br/>2===>hello php<br/>3===>hello python<br/>

然后我们在浏览器访问index.html和最初访问index.php显示的内容一样,但是区别是index.html是静态页面。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。/

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章