0

我有一个文件(passwords_admin.txt),其中包含如下信息:

# This file is for storing administrative
# .passwords_user in the same directory.
#
# NOTE (Important):
# format: <server type> <keyword>[,<keyword>...] <server name> <login name> <password>      
[<location> [<host> <port>] ]
# The first entry for a given server will be the default user.
# Current keywords:
# livepw - The password change script will change the sa password on this server to the 
new live password
# devpw - The password change script will change the sa password on this server to the 
new dev password
## mysql servers
##
# Do not remove the next line
# ----------- MySQL Instances start here ----------
mysql 1515,dev,devpw,online,ldap_pwd dev-exodus-01 dba_admin B66AF9 166.77.177.241 3306
mysql 1515,dev,devpw,online,ldap_pwd dev-exodus-01 dba_query 83939E 166.77.177.241 3306
mysql 1515,dev,devpw,online,ldap_pwd qa-exodus-01 dba_admin B66AF9 166.77.189.125 3306
mysql 1515,dev,devpw,online,ldap_pwd qa-exodus-01 dba_query 583939E 166.77.189.125 3306
...
...

数据以这种格式存储:format: <server type> <keyword>[,<keyword>...] <server name> <login name> <password> [<location> [<host> <port>] ]

现在,我想复制和打印特定实例的主机名和关键字(devpw 或 livepw)。

例如,例如 dev-exodus-01。我想打印它的主机名 166.77.177.241 和它的关键字devpw。或者有什么方法可以将这些值存储在变量中,以后可以使用它们?

我试过这个,但显然它不起作用。

$file = fopen("passwords_admin.txt", "r");
if (!$file) {
    echo "<p>Unable to open remote file.\n";
    exit;
}
while (!feof($file)) {
    $line = fgets($file, 1024);

    if (preg_match("@devpw(.*)@i", $line, $out)) {
        $title = $out[1];
        echo $title;
        echo "<br/>";
    }
}

有什么建议么 ?

4

1 回答 1

1

这应该为您指明正确的方向:

if (preg_match("@devpw(.*)@i", $line)) {
    $data = explode (" ", $line);
    $keywords = $data[1];
    $hostname = $data[5];
}

它根据您的格式将行拆分为一个数组。$hostname设置为第六个条目,并且在$keywords第二个条目中。

您需要做一些类似的事情$keywords来获取各个关键字,并且您需要找出一种方法,既可以从您想要的配置文件中找到一行,也可以存储多行数据 - 一个数组关联数组可能会起作用。

于 2012-08-23T21:31:22.720 回答