Home php教程 php手册 php页面静态化 适用于添加 更新文章内容 模板文件生成html

php页面静态化 适用于添加 更新文章内容 模板文件生成html

Jun 06, 2016 pm 08:01 PM
php content article renew template Add to static page

一 页面静态化有利有弊 合理的使用php生成html完成网站 静态化设计 1 有利于seo 2 有利于对于一些不经常更新的内容 提高访问效率 二 两种方式去实现静态化 1. 使用文件函数得到静态页面的模板字符串,然后用str_replace函数将需要替换的东西替换了再写入到

一  页面静态化有利有弊 合理的使用php生成html完成网站 静态化设计

1  有利于seo

2  有利于对于一些不经常更新的内容 提高访问效率

二  两种方式去实现静态化

1. 使用文件函数得到静态页面的模板字符串,然后用str_replace函数将需要替换的东西替换了再写入到新的文件中。
2. 利用PHP的输出控制函数(Output Control)得到静态页面字符串,再写入到新的文件中。

本文只讲第一种方式 后续会更新第二种

1 简单的html页面用于添加文章

<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->

    
        <title>TODO supply a title</title>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <style>
            a:link{
                color:rgb(10,10,10);
                text-decoration: none;
            }
           form ul li{
                list-style: none;
               }
        </style>
        <script charset="utf-8" src="mykindeditor/kindeditor.js"></script>
        <script charset="utf-8" src="mykindeditor/lang/zh_CN.js"></script>
        <script>
        KindEditor.ready(function(K) {
                window.editor = K.create(&#39;#editor_id&#39;);
        });
        </script>
    
    
       
Copy after login
  • 标题
  • 作者
  • 内容
2 添加文章处理页面
<?php header("Content-type:text/html;charset=utf-8");
require &#39;common/fileGenerate.class.php&#39;;
require &#39;common/connect.class.php&#39;;
$title=htmlspecialchars($_POST[&#39;title&#39;]);
$autoher=htmlspecialchars($_POST[&#39;autoher&#39;]);
$content=htmlspecialchars($_POST[&#39;content&#39;]);
$db=new connect();
$sql="insert into artnews(title,content,autoher)VALUES(&#39;$title&#39;,&#39;$content&#39;,&#39;$autoher&#39;)";
$insert_id=$db->query($sql);
$filename=date('Ymdhis')."_".$insert_id.".html";
$fileGenerate=new fileGenerate();
$fileGenerate->htmlfile($filename,$title,$autoher,$content);
?>
Copy after login
3 生成文件类
<?php /*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
/**
 * Description of fileGenerate
 *
 * @author Administrator
 */
class fileGenerate {
    //html文件按照模板生成函数
    public function htmlfile($filename,$title,$autoher,$content){ 
        //判断静态文件是否存在不存在直接生成 存在删除重新生成
        if(file_exists($filename)){
            unlink($filename);
        }else {            
            $filemodel="art.html";                        //#模板地址
            $file=fopen($filemodel,"rb");                 //#打开模板,得到文件指针
            $temp=fread($file,filesize($filemodel));      //#得到模板文件html代码
            //替换摸版中的内容
            $temp=str_replace("[title]",$title,$temp);
            $temp=str_replace("[autoher]",$autoher,$temp);
            $temp=str_replace("[content]",$content,$temp);
            //生成html文件            
            fwrite(fopen("html/"."$filename","wb"),$temp); #$filename是静态页面的文件名
            if(file_exists("html/"."$filename")){
                echo &#39;html生成完成&#39;;
            }else{
                echo &#39;html生成失败&#39;;
            }
        }
    }
    
}
Copy after login
4 数据库连接
<?php /*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
/**
 * Description of connect
 *
 * @author Administrator
 */
class connect {
    //数据库连接
    private $host;
    private $user;
    private $pwd;
    private $dbname;
    private $port;
    private $charset;
    public function __construct(){
        $this->host='localhost';
        $this->user='root';
        $this->pwd='';
        $this->dbname='phptest';
        $this->charset='set names utf8';
        $this->getConnect();
    }
    public function getConnect(){
        $con=@mysql_connect($this->host,$this->user,$this->pwd);
        mysql_select_db($this->dbname)or die("not found.$this->dbname");
        mysql_query($this->charset);
    }
    function query($sql){
        mysql_query($sql);
        return $insert_id=mysql_insert_id();
    }
}
Copy after login
下面给出 源码 数据库sql文件 的下载地址

http://pan.baidu.com/s/1gdIJAPd

有什么不足或是建议 也请大家评论留言




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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles