php txt删除重复行,php – 删除文本文件中的重复行

问题是每行末尾的新行字符.因为在最后一行的末尾没有新行字符,所以它与其他行不同.

因此,只需在读取文件时删除它们,然后在再次保存文件时添加:

$lines = file('test.txt', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);

$lines = array_unique($lines);

file_put_contents('test.txt', implode(PHP_EOL, $lines));

如果你做:var_dump($lines);在file()调用之后你会看到它:

array(7) {

[0]=>

string(36) "new featuredProduct('', '21640'),

"

[1]=>

string(36) "new featuredProduct('', '24664'),

"

[2]=>

string(36) "new featuredProduct('', '22142'),

"

[3]=>

string(36) "new featuredProduct('', '22142'),

"

[4]=>

string(36) "new featuredProduct('', '22142'),

"

[5]=>

string(36) "new featuredProduct('', '22142'),

"

[6]=>

string(34) "new featuredProduct('', '22142'), "

//^^ See here ^ And here

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值