Home > Backend Development > PHP Tutorial > PHP code automatically converts plain text into PHP code for Web pages

PHP code automatically converts plain text into PHP code for Web pages

WBOY
Release: 2016-07-29 08:40:41
Original
867 people have browsed it

首先让我们来看一个我朋友希望转换的纯文本文件的例子:
以下为引用的内容:

复制代码 代码如下:


  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 .= "

$slug
";
$output .= "
By $byline

";
$output .= "

$html
";
// 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.

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template