1
file_put_contents("kris.txt", "$ip:$port\n",FILE_APPEND);

创建

127.0.0.1
:1575

代替

127.0.0.1:1575

我想将结果放在一行 127.0.0.1:1575 [IP:PORT]

127.0.0.1:7575
127.0.0.1:1575
127.0.0.1:4574
127.0.0.1:6554

代替

127.0.0.1
:7575
127.0.0.1
:1575
127.0.0.1
:4574
127.0.0.1
:6554

ETC

4

1 回答 1

4

看起来最后$ip包含一个换行符。为了摆脱它,trim变量$ip

file_put_contents("kris.txt", trim($ip) . ":$port\n",FILE_APPEND);
于 2013-08-01T18:17:53.643 回答