1

我有一个 txt 文件,其中包含域和 ips 看起来像这样

aaa.bbb.com 8.8.8.8
bbb.com 2.2.2.2
...
...
..

如何将 bbb.com 替换为 3.3.3.3 但不更改 aaa.bbb.com?

这是我功能的一部分,但根本不起作用。

第一部分我通过在获得匹配记录后逐行从文件中读取匹配域来搜索匹配域,然后
将其删除。
第二部分我在其中写了一个新行。

    $filename = "record.txt";
    $lines = file($filename);

    foreach($lines as $line) 
    if(!strstr($line, "bbb.com") //I think here is the problem core
    $out .= $line;

    $f = fopen($filename, "w");
    fwrite($f, $out);
    fclose($f);



    $myFile = "record.txt";
    $fh = fopen($myFile, 'a') or die("can't open file");
    $stringData = "bbb.com\n 3.3.3.3\n";
    fwrite($fh, $stringData);
    fclose($fh);

执行代码后,aaa.bbb.com 和 bbb.com 都被删除了,我该如何解决这个问题?

我尝试过“parse_url”,但“parse_url”只解析带有“http://”前缀的 url,而不是域。

4

2 回答 2

1

好吧,很抱歉造成误解,这应该有效:

<?php

$file = "record.txt";
$search = "bbb.com";
$replace = "3.3.3.3";

$open = file_get_contents($file);
$lines = explode(PHP_EOL, $open);
$dump = "";
foreach($lines as $line){
    $pos = strpos($line, $search);
    if($pos === false){
    echo "<b>$line</b>";
        $dump .= $line.PHP_EOL;
    }else{
        if($pos !== 0){
            $dump .= $line.PHP_EOL;
        }else{
            $dump .= $search." ".$replace.PHP_EOL;
        }
    }
}
$dump = substr($dump,0,-1);
file_put_contents($file, $dump);

?>
于 2012-06-22T09:57:58.153 回答
0

我能想到的最简单的解决方案是使用substr($line,0,7) == 'bbb.com'而不是您的strstr比较。

于 2012-06-22T09:07:58.923 回答