码迷,mamicode.com
首页 > 编程语言 > 详细

php读取在线远程txt文档内容到数组并遍历

时间:2020-08-11 15:52:05      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:color   oca   nbsp   数据   info   data   style   com   内容   

 

 

<?php   
$txt = "http://www.xxx.cn/sitemap.txt"; //读取远程txt;
//是否存在
if(file_get_contents($txt)){
$data = file($txt); //将文件存放在一个数组中;
$num = count($data); //条数;
$id = mt_rand(0,$num-1); //随机数字;
$url = chop($data[$id]); //显示第几行数据,并去除空格;
echo "$url";  //随机显示一条域名
}
echo "</br>";
echo "zongtiaoshu:"."$num";
echo "</br>";
for ($i=0; $i < $num ; $i++) {
    echo $data[$i]."</br>";
}
//header("Location: $url");  //开始随机跳转
?>

技术图片

 

主要用于遍历网站在线sitemap.txt内容读取。

php读取在线远程txt文档内容到数组并遍历

标签:color   oca   nbsp   数据   info   data   style   com   内容   

原文地址:https://www.cnblogs.com/jscs/p/13475318.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!