比较从php中的文件读取的域

时间:2012-06-22 08:55:14

标签: php string dns strstr parse-url

我有一个包含域的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://”前缀而不是域名的网址。

2 个答案:

答案 0 :(得分: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);

?>

答案 1 :(得分:0)

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