


PHP code automatically converts plain text into PHP code for Web pages
首先让我们来看一个我朋友希望转换的纯文本文件的例子:
以下为引用的内容:
复制代码 代码如下:
Green for Mars!
John R. Doe
The idea of little green men from Mars, long a staple of science fiction, may soon turn out to be less fantasy and more fact.
Recent samples sent by the latest Mars exploration team indicate a high presence of chlorophyll in the atmosphere. Chlorophyll, you will recall, is what makes plants green. It's quite likely, therefore, that organisms on Mars will have, through continued exposure to the green stuff, developed a greenish tinge on their outer exoskeleton.
An interview with Dr. Rushel Bunter, the head of ASDA's Mars Colonization Project blah blah...
What does this mean for you? Well, it means blah blahblah...
Track follow-ups to this story online at http://www.mars-connect.dom/. To see pictures of the latest samples, log on to http://www.asdamcp.dom/galleries/220/
相当标准的文本:它有一个标题、一个署名和很多段的文字。把这篇文档转换成为HTML真正需要做的是使用HTML的分行和分段标记把原文的布局保留在Web页面上。特殊的标点符号需要被转换成为对应的HTML符号,超链接需要变得可以点击。
下面的PHP代码(列表A)就会完成上面所有的任务:
列表A
让我们来看看它是如何工作的:
复制代码 代码如下:
// set source file name and path
$source = "toi200686.txt";
// read raw text as array
$raw = file($source) or die("Cannot read file");
// retrieve first and second lines (title and author)
$slug = array_shift($raw);
$byline = array_shift($raw);
// join remaining data into string
$data = join('', $raw);
// replace special characters with HTML entities
// replace line breaks with
$html = nl2br(htmlspecialchars($data));
// replace multiple spaces with single spaces
$html = preg_replace('/ss+/', ' ', $html);
// replace URLs with elements
$html = preg_replace('/s(w+://)(S+)/', ' ', $html);
// start building output page
// add page header
$output =<<< HEADER
HEADER;
// add page content
$output .= "
$output .= "
$output .= "
// add page footer
$output .=<<< FOOTER
FOOTER;
// display in browser
echo $output;
// AND/OR
// write output to a new .html file
file_put_contents(basename($source, substr($source, strpos($source, '.'))) . ".html", $output) or die( "Cannot write file");
?>
The first step is to read the pure ASCII file into a PHP array. This can be easily done through the file() function, which will read each line of the file. are converted into elements in a numerically indexed array
Then, the title and author lines (I assume these are both the first two lines of the file) are extracted from the array and put into separate files via the array_shift() function. variable. The remaining members of the array are then concatenated into a string. This string now contains the entire text of the article. Special characters like "'", "<" and ">" The symbols are converted into corresponding HTML symbols through the htmlspecialchars() function. In order to preserve the original format of the article, line breaks and paragraphs are converted into HTML
elements through the nl2br() function. Multiple spaces in the middle of the article are replaced by simple strings. Compressed into a space.
The URL in the article body is detected by regular expressions, and when the page is displayed in the web browser, it will convert the URL into a clickable hyperlink. HTML rules create the output HTML page. The title, author, and body of the article are formatted with CSS style rules. Although this script does not do this, you can customize the appearance of the final page here, and you can add graphics to the template. elements, colors or other eye-catching content.
Once the HTML page is built, it can be sent to the browser or saved as a static file using file_put_contents(). Note that the original file name will be changed when saving. Upon decomposition, a new filename (called filename.html) is created for the newly created web page. You can then publish the web page to a web server, save it to a CD, or edit it further
Note: When using this script to create and save HTML files to disk, you must ensure that the script has write permissions for the directory where the files are saved.
As you can see, if you have a standard format ASCII plain text data file, you can convert it into a usable web page fairly quickly using PHP. If you already have a Web site and plan to add new Web pages to it, it is fairly easy to adjust the templates used by the page builder to adapt them to the look of the original Web site.
The above introduces the PHP code to automatically convert plain text into the PHP code of the Web page, including the content of the PHP code. I hope it will be helpful to friends who are interested in PHP tutorials.

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

How to use regular expressions to batch modify PHP code to meet the latest code specifications? Introduction: As time goes by and technology develops, code specifications are constantly updated and improved. During the development process, we often need to modify old code to comply with the latest code specifications. However, manual modification can be a tedious and time-consuming task. In this case, regular expressions can be a powerful tool. Using regular expressions, we can modify the code in batches and automatically meet the latest code specifications. 1. Preparation: before using

How to write PHP code in the browser and keep the code from being executed? With the popularization of the Internet, more and more people have begun to come into contact with web development, and learning PHP has also attracted more and more attention. PHP is a scripting language that runs on the server side and is often used to write dynamic web pages. However, during the exercise phase, we want to be able to write PHP code in the browser and see the results, but we don't want the code to be executed. So, how to write PHP code in the browser and keep it from being executed? This will be described in detail below. first,

The PHP code implements the request parameter encryption and decryption processing of Baidu Wenxin Yiyan API interface. Hitokoto is a service that provides access to random sentences. Baidu Wenxin Yiyan API is one of the interfaces that developers can call. In order to ensure data security, we can encrypt the request parameters and decrypt the response after receiving the response. The following is an example of PHP code implementing the request parameter encryption and decryption processing of Baidu Wenxinyiyan API interface: <?phpfunction

How to use the PHP code testing function to improve the maintainability of the code. In the software development process, the maintainability of the code is a very important aspect. A maintainable code means that it is easy to understand, easy to modify, and easy to maintain. Testing is a very effective means of improving code maintainability. This article will introduce how to use PHP code testing function to achieve this purpose, and provide relevant code examples. Unit testing Unit testing is a testing method commonly used in software development to verify the smallest testable unit in the code. in P

Analyzing the PHP code testing function and its importance Preface: In the software development process, code testing is an indispensable link. By testing the code, potential bugs and errors can be effectively discovered and resolved, and the quality and stability of the code can be improved. In PHP development, testing functions is also important. This article will delve into the function and importance of PHP code testing, and illustrate it with examples. 1. Functional unit testing (UnitTesting) of PHP code testing Unit testing is the most common testing method

Title: Debugging PHP Code: Parsing Errors and Unexpected Behavior Introduction: Debugging is an important skill when developing PHP applications. When our code reports errors or unexpected behavior, we need to quickly locate the problem and fix it. This article will explore some common PHP errors and unexpected behaviors, and give corresponding code examples and debugging methods. 1. Grammatical errors Grammatical errors are one of the most common errors. In PHP, syntax errors can cause the entire script to fail to execute properly. Here is a sample code: <?php

Introduction to PHP code static analysis and vulnerability detection technology: With the development of the Internet, PHP, as a very popular server-side scripting language, is widely used in website development and dynamic web page generation. However, due to the flexible and unstandardized nature of PHP syntax, security vulnerabilities are easily introduced during the development process. In order to solve this problem, PHP code static analysis and vulnerability detection technology came into being. 1. Static analysis technology Static analysis technology refers to analyzing the source code and using static rules to identify potential security issues before the code is run.

How to use tools to automatically check whether PHP code complies with the latest coding standards? Introduction: In the software development process, we often need to follow certain code specifications to ensure the readability, maintainability and scalability of the code. However, manually checking code specifications is a tedious and error-prone task. In order to improve efficiency and reduce errors, we can use some tools to automatically check code specifications. In this article, I will introduce how to use some popular tools to automatically check whether PHP code complies with the latest coding standards. 1. PH
