您正在for
循环之外进行递增,并且仅访问[0]
th 元素,因此其他任何地方都没有任何变化。
这应该看起来像:
$filename = 'a.txt';
$lines = file($filename);
// $k = key, $v = value
foreach ($lines as $k=>$v) {
$exploded = explode("|", $v);
// Does this match the site name you're trying to increment?
if ($exploded[0] == "some_name_up_to_you") {
$exploded[1]++;
// To make changes to the source array,
// it must be referenced using the key.
// (If you just change $v, the source won't be updated.)
$lines[$k] = implode("|", $exploded);
}
}
// Write.
file_put_contents($filename, $lines);
不过,您可能应该为此使用数据库。查看 PDO 和 MYSQL,您将走上令人敬畏的道路。
编辑
要执行您在评论中提到的操作,您可以设置一个布尔标志,并在您遍历数组时触发它。break
如果您只寻找一件事,这也可能需要 a :
...
$found = false;
foreach ($lines as $k=>$v) {
$exploded = explode("|", $v);
if ($exploded[0] == "some_name_up_to_you") {
$found = true;
$exploded[1]++;
$lines[$k] = implode("|", $exploded);
break; // ???
}
}
if (!$found) {
$lines[] = "THE_NEW_SITE|1";
}
...