search
HomeBackend DevelopmentPHP TutorialPHP 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;
// add page content
$output .= "
$slug
";
$output .= "
By $byline

";
$output .= "
$html
";
// add page footer
$output .=

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 "'", "" 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.

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代码并保持代码不被执行?怎样在浏览器中编写PHP代码并保持代码不被执行?Mar 10, 2024 pm 02:27 PM

怎样在浏览器中编写PHP代码并保持代码不被执行?随着互联网的普及,越来越多的人开始接触网页开发,其中对于PHP的学习也越来越受到关注。PHP是一种在服务器端运行的脚本语言,通常用于编写动态网页。然而,在练习阶段,我们希望能够在浏览器中编写PHP代码并查看结果,但又不希望代码被执行。那么,如何实现在浏览器中编写PHP代码并保持不被执行呢?下面将详细介绍。首先,

如何使用正则表达式批量修改PHP代码以满足最新的代码规范?如何使用正则表达式批量修改PHP代码以满足最新的代码规范?Sep 05, 2023 pm 03:57 PM

如何使用正则表达式批量修改PHP代码以满足最新的代码规范?导言:随着时间推移和技术的发展,代码规范也在不断更新和改进。在开发过程中,我们经常需要对旧有的代码进行修改以符合最新的代码规范。然而,手动修改可以是一项繁琐且耗时的任务。在这种情况下,正则表达式可以成为一个有力的工具。利用正则表达式,我们可以批量修改代码并自动满足最新的代码规范。一、准备工作:在使用正

PHP代码实现百度文心一言API接口的请求参数加密和解密处理PHP代码实现百度文心一言API接口的请求参数加密和解密处理Aug 16, 2023 pm 11:40 PM

PHP代码实现百度文心一言API接口的请求参数加密和解密处理一言(Hitokoto)是一个提供获取随机句子的服务,百度文心一言API是其中一个允许开发者调用的接口。为了确保数据的安全性,我们可以对请求参数进行加密处理,同时在接收到响应后进行解密操作。以下是PHP代码实现百度文心一言API接口的请求参数加密和解密处理的示例:<?phpfunction

如何利用php代码测试功能提高代码的可维护性如何利用php代码测试功能提高代码的可维护性Aug 11, 2023 pm 12:43 PM

如何利用PHP代码测试功能提高代码的可维护性在软件开发过程中,代码的可维护性是一个非常重要的方面。一个可维护性高的代码意味着它易于理解、易于修改和易于维护。而测试是非常有效的一种提高代码可维护性的手段。本文将介绍如何利用PHP代码测试功能来达到这个目的,并提供相关的代码示例。单元测试单元测试是软件开发中常用的一种测试方法,用于验证代码中最小的可测试单元。在P

刨析php代码测试功能及其重要性刨析php代码测试功能及其重要性Aug 11, 2023 pm 03:12 PM

刨析php代码测试功能及其重要性前言:在软件开发过程中,代码测试是一个不可或缺的环节。通过对代码进行测试,可以有效地发现及解决潜在的bug和错误,提高代码的质量和稳定性。在php开发中,测试功能同样具有重要性。本文将深入探讨php代码测试的功能及其重要性,并结合实例进行说明。一、php代码测试的功能单元测试(UnitTesting)单元测试是最常见的测试方

调试 PHP 代码中的报错和意外行为调试 PHP 代码中的报错和意外行为Aug 12, 2023 pm 04:49 PM

标题:PHP代码调试:解析报错和意外行为导言:在开发PHP应用程序时,调试是一个重要的技能。当我们的代码出现报错或意外行为时,我们需要快速地定位问题并进行修复。本文将探讨一些常见的PHP错误和意外行为,并给出相应的代码示例和调试方法。一、语法错误语法错误是最常见的错误之一。在PHP中,语法错误会导致整个脚本无法正常执行。下面是一个示例代码:<?php

PHP代码静态分析和漏洞检测技术PHP代码静态分析和漏洞检测技术Aug 07, 2023 pm 05:21 PM

PHP代码静态分析和漏洞检测技术引言:随着互联网的发展,PHP作为一种非常流行的服务器端脚本语言,被广泛应用于网站开发和动态网页生成。然而,由于PHP语法灵活而不规范的特性,导致在开发过程中容易引入安全漏洞。为了解决这个问题,PHP代码静态分析和漏洞检测技术应运而生。一、静态分析技术静态分析技术是指在代码运行之前通过解析源代码,使用静态规则来识别潜在的安全问

如何自动化检查PHP代码是否符合最新的代码规范?如何自动化检查PHP代码是否符合最新的代码规范?Sep 06, 2023 pm 12:33 PM

如何使用工具自动化检查PHP代码是否符合最新的代码规范?引言:在软件开发过程中,我们经常需要遵循一定的代码规范来保障代码的可读性、可维护性和可扩展性。但是,手动检查代码规范是一项繁琐且容易出错的任务。为了提高效率和减少错误,我们可以使用一些工具来自动化检查代码规范。在本文中,我将介绍如何使用一些流行的工具来自动化检查PHP代码是否符合最新的代码规范。一、PH

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

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks 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.