1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > 用PHP脚本自动把纯文本文件转换成Web页面

用PHP脚本自动把纯文本文件转换成Web页面

时间:2019-04-06 04:00:40

相关推荐

用PHP脚本自动把纯文本文件转换成Web页面

php教程|php手册

用,PHP,脚本,自动,把,纯,文本,文件,转,换成,Web,页面,最近,我一个,老朋友,向我,打电话,求助,。,他

php教程-php手册

最近,我的一个老朋友向我打电话求助。他从事记者的职业有多年了,最近获得了重新出版他的很多早期专栏的权利。他希望把他的作品贴在Web上;但是他的专栏都是以纯文本文件的形式保存的,而且他既没有时间也不想去为了把它们转换成为Web页面而学习HTML的知识。由于我是他电话本里唯一一个精通计算机的人,所以他打电话给我看我是否能够帮帮他。

问卷调查系统源码,vscode怎么在左边显示网页,ubuntu安装 apt,tomcat导航栏图片,iis防爬虫,php源码分析工具,河北怎么学seo网络推广教程,购买网站模板lzw

“让我来处理吧,”我说:“一个小时以后再给我打电话。”当然了,当他几个小时以后打电话过来,我已经为他预备好了解决的方法。这需要用到一点点PHP,而我收获了他没完没了的感谢和一箱红酒。

2048源码自动退出,vscode远程连接虚拟机,ubuntu 指定网卡,查看tomcat关闭日志,python爬虫进化,php 注册模式,太原seo优化网络营销方法,自动网站收录源码lzw

那么我在这一个小时里做了些什么呢?这就是本篇文章的内容。我将告诉你如何使用PHP来快速将纯ASCII文本完美地转换成为可读的HTML标记。

商城会员系统源码,vscode安装css提示,ubuntu 视频缓冲,tomcat重启出现超时,腿上爬虫,php mvc架构,兰州整站seo优化平台,网站产品采集器,预定餐厅模板 英文怎么说lzw

首先让我们来看一个我朋友希望转换的纯文本文件的例子:

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

<?php

// set source file name and path

$source = “toi86.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);

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。