php按行数顺序读取TXT里面的内容
txt文件里面每行都保存了一个IP
现在通过不同的电脑请求,每次请求按行数顺序读取.
这个要怎么写?
回复讨论(解决方案)
什么叫通过不同的电脑请求?
没看懂。每次读一行?
什么叫通过不同的电脑请求?
就是有可能 三台或者多台电脑 同时需要读取txt里面的内容,担心不同的电脑读取的ip一样
没看懂。每次读一行?
第一次请求 读取第一行的ip,第二次请求,读取第二行的ip,这样一直下去
按照楼主的意思:
$conts = file_get_contents($filename);$arrConts = explode("\n",$conts);foreach($arrConts as $cont){ $pos = strpos($cont,$_SERVER['REMOTE_ADDR']); if($pos === false) continue; else echo "This ip:".$cont;}
按照楼主的意思:
PHP code
$conts = file_get_contents($filename);
$arrConts = explode("\n",$conts);
foreach($arrConts as $cont){
$pos = strpos($cont,$_SERVER['REMOTE_ADDR']);
if($pos === false)
……
不好意思呀,我是新手,那我那个a.txt文件 放在根目录里,这个代理里面哪个地方放这个文件路径>?
我理解错楼主的意思了,#4更新了任务需求!!!
引用 5 楼 的回复:
按照楼主的意思:
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要求有差别,等等其他高手,吃饭先!
引用 6 楼 的回复:
引用 5 楼 的回复:
按照楼主的意思:
PHP code
$conts = file_get_contents($filename);
$arrConts = explode("\n",$conts);
foreach($arrConts as $cont){
$pos = strpos($cont,$_SERVER['REMOTE_ADD……
Warning: file_get_contents(a.txt) [function.file-get-contents]: failed to open stream: No such file or directory in E:\host\bendi\a.com\ip.php on line 9
这个提示是不是我的路径写错了
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title></head><?php$filename = "/a.txt";$conts = file_get_contents($filename);$arrConts = explode("\n",$conts);foreach($arrConts as $cont){ $pos = strpos($cont,$_SERVER['REMOTE_ADDR']); if($pos === false) continue; else echo "This ip:".$cont;}?><body></body></html>
引用 1 楼 的回复:
什么叫通过不同的电脑请求?
就是有可能 三台或者多台电脑 同时需要读取txt里面的内容,担心不同的电脑读取的ip一样
担心不同的电脑读取的ip一样? 那你是要a 电脑读取1 b电脑读取2 c 电脑读取 3?
上数据库吧.
Warning: file_get_contents(a.txt) [function.file-get-contents]: failed to open stream: No such file or directory in E:\host\bendi\a.com\ip.php on line 9
这种情况出现的问题有两种:
1、路径不对;
Answer-> Linux:$filename="/a.txt";(如楼主说的根目录)
2、文件没有读取权限。
Answer-> Linux: chmod 0777 /a.txt
引用 3 楼 的回复:
引用 1 楼 的回复:
什么叫通过不同的电脑请求?
就是有可能 三台或者多台电脑 同时需要读取txt里面的内容,担心不同的电脑读取的ip一样
担心不同的电脑读取的ip一样? 那你是要a 电脑读取1 b电脑读取2 c 电脑读取 3?
上数据库吧.
是的 是这个意思
$num = 0;if(file_exists('count.txt')) $num = file_get_contents('count.txt');$ar = file('ip.txt');echo $ar[$num++];file_put_contents('count.txt', $num, LOCK_EX);
PHP code
$num = 0;
if(file_exists('count.txt')) $num = file_get_contents('count.txt');
$ar = file('ip.txt');
echo $ar[$num++];
file_put_contents('count.txt', $num, LOCK_EX);
高手这个方法很巧
很明显涉及到并发访问问题,要么用文件锁,要么用数据库事务,否则都无法保证原子性。
$num = 0;if(file_exists('count.txt')) $num = file_get_contents('count.txt');$ar = file('ip.txt');echo $ar[$num++];file_put_contents('count.txt', $num, LOCK_EX);
这段代码什么意思呢,是要自己建立一个count.TXT文件来计数,然后才能依行读取IP.TXT的内容吗。
直接输出的就是IP?能不能把IP提取发送啊 新手求教。。http://bbs.csdn.net/topics/390919386?page=1

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Alipay PHP...

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.
