


Simple principles and methods for batch generating static HTML with PHP
Nowadays CMS basically supports the generation of HTML for articles. Needless to say, the benefits of generating HTML static web pages. Whether it is the browsing speed of page opening or the benefit of search engine optimization and SEO, there is a significant improvement. Sometimes web pages There are more or less loopholes in it, and converting PHP into HTML format also effectively protects the website.
The technology of generating HTML with PHP is relatively simpler than that of ASP. Let’s briefly talk about how to use PHP to generate HTML in batches. Let’s take a look at the source code first:
<?php if($_POST[button]){ $sql="select * from doorsjk_about where id<12"; $rs=$db->query($sql); while($row=$db->fetch_array($rs)){ $path='list12'.$row[id].'.html'; $fp=fopen("../group/about.html","r"); $str=fread($fp,filesize("../group/about.html")); $str=str_replace("{title}",$row[title],$str); $str=str_replace("{name}",$system['name'],$str); $str=str_replace("{content}",$row[content],$str); $str=str_replace("{copyright}",$system['copyright'],$str); fclose($fp); $handle=fopen("../group/".$path,"w"); fwrite($handle,$str); echo "<font color='red'>正在生成</font>"; echo "$path"; fclose($handle); } echo "<script>alert('生成成功!');window.location.href='Onlyhtml.php';</script>"; } ?> <form id="form1" name="form1" method="post" action=""> <label><div style="margin:200px 200px;"><img src="/static/imghw/default1.png" data-src="../images/html.jpg" class="lazy" / alt="Simple principles and methods for batch generating static HTML with PHP" > <input type="submit" name="button" id="button" value="单页生成" /> </div> </label> </form>
First, include the code to connect to the database. The following is a clicked form. After receiving the button button, it directly loops to generate HTML. Here $path='list12′.$row[id].'.html'; is the name of the generated file, and $fp= fopen("../group/about.html","r"); is the opened template file. You just need to make it into the HTML file you want. Here, use the str_replace function to replace the tag, so that you can Call tags like {title} in HTML to generate HTML files. By analogy, simple HTML batch generation is completed.
The calling tag in the HTML file is: {title}, so that it is directly transferred to the read database file: $row[title]. If the amount of data is large, it can be generated in batches, that is, the ID is generated: from ( ) to (). Use limit to accept calls. As for the dynamic files used in HTML, for example, after generating static files, the number of reads of the article must be counted. This dynamic call can be encapsulated into a JS file and embedded in it.
What we introduce here is batch regeneration. In fact, HTML files are generated when adding news, and HTML files are generated when editing article content. In fact, the principles are similar. I will write it down for reference.
For more related articles on the simple principles and methods of batch generating static HTML in PHP, please pay attention to the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove
