PHP 将URLS的文本文件分解为HTML链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 将URLS的文本文件分解为HTML链接相关的知识,希望对你有一定的参考价值。

<?php 
//locate file for collection
$userfile= file_get_contents("links.txt");


/* this user file (links.txt) is simply a series of URLS, each on one line like so:
www.xxxxxxx.org
www.yyymmmzzz.com
www.someotherurl.com

*/

//explode each line of hte links.txt file directly into an array
$links = explode("\n",$userfile);

//sort($links) or shuffle($links) or whatever this array
sort($links);

//output the array for display. 
foreach ($links as $text) {
echo '<a href="http://' . $text .'">' . $text . '</a><br />' . " \n";
}

?>

以上是关于PHP 将URLS的文本文件分解为HTML链接的主要内容,如果未能解决你的问题,请参考以下文章

如何将php中的文本保存为pdf文件?

使用 PHP 将 CSS 文件分解为数组

PHP 块 - 将大型XML文件分解为可管理块

如何将复选框链接到 html/PHP 中的文本字段

使用 PHP 将 URLS 中的空格替换为 %20

PHP Linkify - 将文本转换为链接