用PHP往实现静态化

WBOY
Freigeben: 2016-06-13 12:02:46
Original
1088 Leute haben es durchsucht

用PHP去实现静态化

      我们在PHP网站开发过程中为了网站的推广或者SEO的需要,需要对网站进行一定的静态化,这里设计到什么是静态页面,所谓的静态页面,并不是页面中没有动画等元素,而是指网页的代码都在页面中,即不需要再去执行PHP脚本等服务器端的语言去运行,我们可以直接访问到的网页,这就是静态网页。

     那么静态网页有什么好处呢?第一个主要原因就是因为搜索引擎,由于搜索引擎对PHP页面搜鹿和html页面的收录有一定的差别,并且面临着页面资源的占用问题,我们需要对.php文件进行静态化。有一种方式是改写访问地址,可以通过URL的PATHINFO模式来修改它,让它看上去更像一个静态页面,从而有更大的几率被搜索引擎抓取和收录。

     第二点原因就是它可以方便页面的加载,有时候我们去一些比如新浪、网易这些网站的首页,发现内容非常多,但是它的加载时间还真的不长,这里面也有静态化的功劳。网站可以在用户访问网站之前就通过一定的程序来进行静态化,生成静态页面,当用户去访问该页面的时候,由于访问的是静态页面,因此,访问速度会比访问动态页面的速度快了很多倍。这种技术对于大网站来说很有必要,对于小网站也可以采用。它在前台的表现是页面加载速度变快,在后台的表现是减少了数据库的连接,减少了数据库的压力,唯一的缺点就是相对占的硬盘多一些,不过,硬盘相对廉价的多。

      既然了解了静态化的一些优点,那么如何做到静态化呢?我们用PHP所能做到的静态化分为纯静态化和伪静态化,二者的却别在于圣经静态页面的机制不同,伪静态化就是通过解析URL和使用重写模式来运行动态页面,它只是对搜索引擎比较友好,并不是真正意义上的静态化,下面我们介绍一下纯静态化。

    所谓纯静态化,就是生成HTML文件的方式,我们需要开启PHP自带的缓存机制,即ob_start来开启缓存,并且在ob_start之前不能有任何输出,否则执行失败,然后我们用ob_get_contents函数来获取缓存中的内容,该函数会返回一个字符串,第三个函数就是ob_end_clean,它用来清空缓存中的内容并且关闭,成功返回True,失败返回False。

   下面请看实例:

    这里我们从数据库中取出数据并且把这些数据生成之后缓存到页面中,下面是该php文件:

<?php //开启缓存ob_start();//第一步连接数据库$conn = mysqli_connect("localhost","root","","bbs");//第二步设置相应的字符编码$setting = &#39;set names utf8&#39;;mysqli_query($conn,$setting);//第三步进行查询$sql = &#39;SELECT * FROM user&#39;;$result = mysqli_query($conn,$sql);//第四步把查询结果转化为一个数组$rows = mysqli_num_rows($result);$sqldata = array();for($i = 0;$i <$rows;$i ++){	$sqldata[] = mysqli_fetch_assoc($result);}//然后打印该信息var_dump($sqldata);//得到生成的html文件,下次访问就无需访问数据库了$msg = ob_get_contents();ob_end_clean();//把输出内容放入一个html文件中$f = fopen("static.html","w");fwrite($f,$msg);echo "静态化成功";
Nach dem Login kopieren

我们运行上述页面之后,发现该文件夹下自动多了一个html文件,下面是它的代码:

<pre class="'xdebug-var-dump'" dir="'ltr'"><b>array</b> <i>(size=6)</i>  0 <font color="'#888a85'">=></font>     <b>array</b> <i>(size=4)</i>      'id' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'1'</font> <i>(length=1)</i>      'level' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'0'</font> <i>(length=1)</i>      'name' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'辛星'</font> <i>(length=6)</i>      'pwd' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'bd04fcc97578ce33ca5fb331f42bc375'</font> <i>(length=32)</i>  1 <font color="'#888a85'">=></font>     <b>array</b> <i>(size=4)</i>      'id' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'2'</font> <i>(length=1)</i>      'level' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'1'</font> <i>(length=1)</i>      'name' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'小倩'</font> <i>(length=6)</i>      'pwd' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'61cb72858be523b9926ecc3d7da5d0c6'</font> <i>(length=32)</i>  2 <font color="'#888a85'">=></font>     <b>array</b> <i>(size=4)</i>      'id' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'3'</font> <i>(length=1)</i>      'level' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'1'</font> <i>(length=1)</i>      'name' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'小楠'</font> <i>(length=6)</i>      'pwd' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'a3d2de7675556553a5f08e4c88d2c228'</font> <i>(length=32)</i>  3 <font color="'#888a85'">=></font>     <b>array</b> <i>(size=4)</i>      'id' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'4'</font> <i>(length=1)</i>      'level' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'1'</font> <i>(length=1)</i>      'name' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'刘强'</font> <i>(length=6)</i>      'pwd' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'fcdb06a72af0516502e5fdccc9181ee0'</font> <i>(length=32)</i>  4 <font color="'#888a85'">=></font>     <b>array</b> <i>(size=4)</i>      'id' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'5'</font> <i>(length=1)</i>      'level' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'1'</font> <i>(length=1)</i>      'name' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'星哥'</font> <i>(length=6)</i>      'pwd' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'866a6cafcf74ab3c2612a85626f1c706'</font> <i>(length=32)</i>  5 <font color="'#888a85'">=></font>     <b>array</b> <i>(size=4)</i>      'id' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'6'</font> <i>(length=1)</i>      'level' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'1'</font> <i>(length=1)</i>      'name' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'辛勇'</font> <i>(length=6)</i>      'pwd' <font color="'#888a85'">=></font> <small>string</small> <font color="'#cc0000'">'e93beb7663f3320eaa0157730d02dd0c'</font> <i>(length=32)</i>
Nach dem Login kopieren

当然这份代码是我们写的php程序自动生成的,可以用浏览器直接访问,从而减轻了数据库的压力。


Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage