search
HomeBackend DevelopmentPHP TutorialSmarty's method of staticizing pages (generating HTML), smarty static_PHP tutorial

Smarty’s method of staticizing pages (generating HTML), smarty static

This article describes the example of Smarty’s method of staticizing pages (generating HTML). Share it with everyone for your reference, the details are as follows:

In order to reduce the number of database reads, some pages whose content is not frequently changed, such as article details pages, need to be made into HTML static pages.

When using Smarty, the page can also be made static. Let's briefly talk about the usual dynamic reading method when using Smarty.

Generally divided into these steps:

1. Pass a parameter (ID) through the URL;

2. Then query the database based on this ID;

3. Modify the display content as needed after obtaining the data;

4. assign the data to be displayed;

5. display template file.

The Smarty staticization process only requires adding two steps to the above process:

First: use ob_start() before 1 to open the buffer.

Second: Use ob_get_contents() after 5 to get the memory unoutput content, and then use fwrite() to write the content to the target html file.

According to the above description, this process is implemented in the front-end of the website, while content management (adding, modifying, deleting) is usually performed in the background. In order to be effective

Using the above process, you can use a little trick, that is Header(). The specific process is as follows: After adding and modifying the program, use

Header() (of course there are other ways) jumps to the foreground to read, so that the page can be HTMLized, and then jumps back to the background management side after generating the html, and these two jumps

The process is invisible.

<&#63;php
$cachefile="./cache/demo.html";//把缓存文件放到一个cache文件夹里
$cachetime=20;
if (!file_exists($cachefile ) || filemtime($cachefile)+$cachetime < time()) //判断是否存在和过期时间
{
  ob_start();//输出控制
  echo '<table border="1" width="800" align="center">';
  echo '<caption><h1 id="user">user</h1></caption>';
  echo '<tr>';
  echo "<td>11111</td>";
  echo "<td>22222</td>";
  echo '</tr>';
  echo '<tr>';
  echo "<td>11111</td>";
  echo "<td>22222</td>";
  echo '</tr>';
  echo '</table>';
$html=ob_get_contents();
file_put_contents($cachefile, $html);//输出到缓存文件
ob_end_flush();//输出并关闭缓冲区
}
else{
  echo 'ceshi';
 include $cachefile;
}
&#63;>

Readers who are interested in more Smarty-related content can check out the special topics on this site: "Basic Tutorial for Getting Started with Smarty Templates", "Summary of PHP Template Technology", "Summary of PHP Database Operation Skills Based on PDO", "PHP Operations and Operators" Usage summary", "PHP network programming skills summary", "PHP basic syntax introductory tutorial", "php object-oriented programming introductory tutorial", "php string (string) usage summary", "php mysql database operation introductory tutorial" and "Summary of Common Database Operation Skills in PHP"

I hope this article will be helpful to everyone’s PHP program design based on smarty templates.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1133094.htmlTechArticleSmarty’s method of realizing page staticization (generating HTML), smarty static This article describes how Smarty realizes page staticization ( Generate HTML) method. Share it with everyone for your reference, the details are as follows:...
Statement
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
如何使用PHP和Smarty实现前后端分离开发如何使用PHP和Smarty实现前后端分离开发Jun 25, 2023 pm 01:46 PM

在现代web开发中,前后端分离已经成为了一个非常流行的趋势,它能够让开发者们更好地组织项目并且提高了项目开发的效率。PHP和Smarty是两个非常常用的技术,它们可以用来实现前后端分离的开发方式。本文将会介绍如何使用PHP和Smarty来实现前后端分离开发。什么是前后端分离开发在传统的web开发中,前端主要负责页面的呈现以及与后端交互的逻辑。后端则主要负责业

CodeIgniter中间件:实现快速缓存和页面静态化的优化策略CodeIgniter中间件:实现快速缓存和页面静态化的优化策略Jul 28, 2023 pm 03:54 PM

CodeIgniter中间件:实现快速缓存和页面静态化的优化策略简介:在网站或应用程序的开发过程中,性能优化一直是一个重要的话题。为了提高网站的响应速度和减少数据库访问的次数,我们可以使用中间件来实现快速缓存和页面静态化的优化策略。本文将介绍如何使用CodeIgniter框架的中间件功能来实现这些优化策略,并提供相应的代码示例。一、中间件概述中间件是一种用于

PHP中的模板引擎Smarty初探PHP中的模板引擎Smarty初探May 11, 2023 pm 05:15 PM

现如今,网站的开发离不了一个重要的组成部分——模板引擎。模板引擎是指一种将页面模板和数据结合起来生成具有特定格式的html代码的工具。在各种网站开发框架中,模板引擎是一个必不可少的组件,因为模板引擎可以大量减少代码的重复性和提高页面的动态性。其中一种最常见和流行的模板引擎是Smarty。Smarty是一个基于PHP语言开发的DSL(DomainSpecif

PHP秒杀系统中的页面静态化和缓存更新策略PHP秒杀系统中的页面静态化和缓存更新策略Sep 19, 2023 am 10:37 AM

PHP秒杀系统中的页面静态化和缓存更新策略随着互联网的迅猛发展和用户数量的持续增加,秒杀活动在电商平台中越来越受欢迎。然而,大量用户同时访问秒杀页面会给服务器带来巨大的负载压力,导致系统崩溃或响应时间长。为了解决这个问题,页面静态化和缓存更新成为PHP秒杀系统中常用的优化策略。本文将介绍如何在PHP秒杀系统中应用页面静态化和缓存更新策略,以提高系统的性能和可

PHP开发中如何使用Smarty模板引擎PHP开发中如何使用Smarty模板引擎Jun 27, 2023 pm 01:28 PM

作为一名PHP开发者,使用模板引擎是理所当然的选择。Smarty是一种流行的模板引擎,它提供了一种将HTML/CSS/JavaScript与PHP代码分离的方式,使开发人员能够更好地组织和管理项目。在本文中,我们将学习在PHP开发过程中如何使用Smarty模板引擎。一、安装Smarty在之前,我们必须安装Smarty。在本文中,我们将使用Composer安装

如何使用PHP和Smarty模板引擎如何使用PHP和Smarty模板引擎May 11, 2023 pm 03:33 PM

PHP是一种强大的服务器端脚本语言,可以用于开发Web应用程序。在Web开发的早期阶段,程序员们使用了很多HTML和JavaScript代码来开发Web应用程序。但是,这种方法很难维护和管理,因为HTML和JavaScript代码可能会变得非常复杂。为了解决这个问题,Smarty模板引擎被创建出来。Smarty是一种基于PHP开发的模板引擎,用于管理和生成W

如何在CakePHP中使用Smarty?如何在CakePHP中使用Smarty?Jun 03, 2023 pm 03:10 PM

CakePHP是一个开源的PHP框架,它提供了丰富的功能和工具来加速web应用程序的开发。其中一个强大的功能就是模板引擎。默认情况下,CakePHP使用PHP的原生语法来进行视图渲染。但是,有时候我们可能想要使用另一种模板引擎,如Smarty。本文将介绍如何在CakePHP中使用Smarty。一、什么是Smarty?Smarty是一个基于模板的PHP框架,它

thinkphp和smarty是什么thinkphp和smarty是什么Jun 14, 2022 pm 05:56 PM

thinkphp是一个开源轻量级PHP框架,是用来简化企业级应用开发和敏捷WEB应用开发的;使用ThinkPHP,开发者可以更方便和快捷的开发和部署应用。Smarty是一个PHP模板引擎,可以更好的帮助开发者分离程序逻辑和页面显示(业务逻辑和显示逻辑分离),使程序员改变程序的逻辑内容不会影响到前端人员的页面设计,前端人员重新修改页面不会影响到程序的程序逻辑。

See all articles

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 Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!