php按行数顺序读取TXT里面的内容解决方法

WBOY
Release: 2016-06-13 12:09:07
Original
1620 people have browsed it

php按行数顺序读取TXT里面的内容
txt文件里面每行都保存了一个IP
现在通过不同的电脑请求,每次请求按行数顺序读取.
这个要怎么写?

------解决思路----------------------
什么叫通过不同的电脑请求?
------解决思路----------------------

引用:
引用:

按照楼主的意思:
PHP code

$conts = file_get_contents($filename);
$arrConts = explode("\n",$conts);
foreach($arrConts as $cont){
$pos = strpos($cont,$_SERVER['REMOTE_ADDR']);
if($pos =……

$filename = "/root/a.txt";

不过和#4要求有差别,等等其他高手,吃饭先!
------解决思路----------------------
引用:
引用:

什么叫通过不同的电脑请求?


就是有可能 三台或者多台电脑 同时需要读取txt里面的内容,担心不同的电脑读取的ip一样


担心不同的电脑读取的ip一样? 那你是要a 电脑读取1  b电脑读取2 c 电脑读取 3?
上数据库吧.


------解决思路----------------------

$num = 0;<br />if(file_exists('count.txt')) $num = file_get_contents('count.txt');<br />$ar = file('ip.txt');<br />echo $ar[$num++];<br />file_put_contents('count.txt', $num, LOCK_EX);<br />
Copy after login
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