search
HomeBackend DevelopmentPHP TutorialDetailed tutorial on generating static pages in php

  1. { title }
  2. this is a { file } file's templets
Copy code

PHP processing: templatetest.php

  1. $title = "Test Template";
  2. $file = "TwoMax Inter test templet,author:Matrix@Two_Max";
  3.  $fp = fopen ("temp.html","r ");
  4. $content = fread ($fp,filesize ("temp.html"));
  5. $content .= str_replace ("{ file }",$file,$content);
  6. $content .= str_replace (" { title }",$title,$content);
  7. echo $content;
  8. ?>
Copy code

  Template parsing processing, that is, filling (content) with the results obtained after PHP script parsing and processing Template processing process. Usually with the help of template classes. Currently, the more popular template parsing classes include phplib, smarty, fastsmarty and so on. The principle of template parsing processing is usually replacement. There are also some programmers who are accustomed to putting judgment, looping and other processing into template files and processing them with parsing classes. The typical application is the block concept, which is simply a loop processing. The PHP script specifies the number of loops, how to loop through, etc., and then the template parsing class implements these operations.

 How to generate static files with PHP.

  PHP generating static pages does not refer to PHP’s dynamic parsing and outputting HTML pages, but refers to using PHP to create HTML pages. At the same time, because of the non-writable nature of HTML, if the HTML we create is modified, it needs to be deleted and regenerated. (Of course, you can also choose to use regular rules to modify it, but I personally think that it is faster than deleting and regenerating it, which is not worth the gain.)

PHP fans who have used PHP file operation functions know that there is a file operation function fopen in PHP, which is to open a file. If the file does not exist, try to create it. This is the theoretical basis on which PHP can be used to create HTML files. As long as the folder used to store HTML files has write permission (ie permission definition 0777), the file can be created. (For UNIX systems, Win systems do not need to be considered.) Taking the above example as an example, if we modify the last sentence and specify to generate a static file named test.html in the test directory:

  1. $title = "Test Template";
  2. $file = "TwoMax Inter test templet,author:Matrix@Two_Max";
  3. $fp = fopen ("temp.html","r ");
  4. $content = fread ($fp,filesize ("temp.html"));
  5. $content .= str_replace ("{ file }",$file,$content);
  6. $content .= str_replace (" { title }",$title,$content);
  7. // echo $content;
  8. $filename = "test/test.html";
  9. $handle = fopen ($filename,"w"); //Open file pointer , create a file
  10. /*
  11. Check whether the file is created and writable
  12. */
  13. if (!is_writable ($filename)){
  14. die ("File: ".$filename." is not writable, please check its properties and try again Try! ");
  15. }
  16. if (!fwrite ($handle,$content)){ //Write information to the file
  17. die ("Generate file".$filename."Failed!");
  18. }
  19. fclose ( $handle); //Close the pointer
  20. die ("Create file".$filename."Success!");
  21. ?>
Copy code

Reference for solutions to common problems: 1. Article list issues: Create a field in the database and record the file name. Each time a file is generated, the automatically generated file name is stored in the database. For recommended articles, just point to the page in the designated folder where the static files are stored. Use PHP operations to process the article list, save it as a string, and replace this string when generating the page. For example, add the tag {articletable} to the table where the article list is placed on the page, and in the PHP processing file:

  1. $title = "Test Template";
  2. $file = "TwoMax Inter test templet,author:Matrix@Two_Max";
  3. $fp = fopen ("temp.html","r ");
  4. $content = fread ($fp,filesize ("temp.html"));
  5. $content .= str_replace ("{ file }",$file,$content);
  6. $content .= str_replace (" { title }",$title,$content);
  7. //Start generating list
  8. $list = '';
  9. $sql = "select id,title,filename from article";
  10. $query = mysql_query ($sql);
  11. while ($result = mysql_fetch_array ($query)){
  12. $list .= ''.$result['title'].'';
  13. }
  14. $content .= str_replace ("{ articletable }",$list, $content);
  15. //End of generating list
  16. // echo $content;
  17. $filename = "test/test.html";
  18. $handle = fopen ($filename,"w"); //Open the file pointer and create File
  19. /*
  20. Check whether the file is created and writable
  21. */
  22. if (!is_writable ($filename)){
  23. die ("File: ".$filename." is not writable, please check its properties and try again! ");
  24. }
  25. if (!fwrite ($handle,$content)){ //Write information to the file
  26. die ("Generate file".$filename."Failed!");
  27. }
  28. fclose ($handle ); //Close the pointer
  29. die ("Create file".$filename."Success!");
  30. ?>
Copy code

Second, paging problem. ​If we specify pagination, there will be 20 articles per page. There are 45 articles in a certain sub-channel list according to the database query. First, we obtain the following parameters through query: 1, the total number of pages; 2, the number of articles per page. The second step, for ($i = 0; $i

  1. $fp = fopen ("temp.html","r");
  2. $content = fread ($fp,filesize ("temp.html"));
  3. $onepage = '20';
  4. $sql = "select id from article where channel='$channelid'";
  5. $query = mysql_query ($sql);
  6. $num = mysql_num_rows ($query);
  7. $allpages = ceil ($num / $onepage);
  8. for ($i = 0;$iif ($i == 0){
  9. $indexpath = "index.html";
  10. } else {
  11. $indexpath = "index_".$i."html";
  12. }
  13. $start = $i * $onepage;
  14. $list = '';
  15. $sql_for_page = "select name,filename,title from article where channel='$channelid ' limit $start,$onepage";
  16. $query_for_page = mysql_query ($sql_for_page);
  17. while ($result = $query_for_page){
  18. $list .= ''.$title.'';
  19. }
  20. $content = str_replace ("{ articletable }",$list,$content);
  21. if (is_file ($indexpath)){
  22. @unlink ($indexpath); //If the file already exists, delete it
  23. }
  24. $handle = fopen ($ indexpath,"w"); //Open the file pointer and create the file
  25. /*
  26. Check whether the file is created and writable
  27. */
  28. if (!is_writable ($indexpath)){
  29. echo "File: ".$indexpath ."Not writable, please check its properties and try again!"; //Change to echo
  30. }
  31. if (!fwrite ($handle,$content)){ //Write information to the file
  32. echo "Generate file". $indexpath."Failed!"; //Change to echo
  33. }
  34. fclose ($handle); //Close pointer
  35. }
  36. fclose ($fp);
  37. die ("Generation of paging file is completed. If the generation is incomplete, please Check the file permission system and then regenerate! ");
  38. ?>
Copy code

Other data generation, data input and output checking, paging content pointing, etc. can be added to the page as appropriate.

Articles you may be interested in: Three methods and code details for generating static pages in PHP Example of php generating static page function (php2html) How to generate static pages in php (three functions) Details on templates and caching of static files generated by PHP A class written in php to generate static pages How to automatically generate static pages on a virtual host at regular intervals Two ways to generate static files with php Principle analysis of php generating static html files How to generate static pages using smarty Understand the principle of php generating static HTML files How to generate static pages with PHP Three ways to generate static html files with php



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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

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-

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

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.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

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' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

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

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

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: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

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

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 Article

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

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.