请关注我,因为我还是PHP的新手。所以我有一个config
这样的文件:
profile 'axisssh2'
server '110.251.223.161'
source_update 'http://myweb.com:81/profile'
file_config 'udp.group-1194-exp11nov.ovpn'
use_config 'yes'
ssh_account 'sgdo.ssh'
我想创建一个名为$currentprofile
的PHP变量,其值为axisssh2
,值不断变化。使用bash中的grep
,我可以做到
currentprofile=$(cat config | grep ^profile | awk -F "'" '{print $2}')
但我不知道如何用PHP做到这一点。请帮助我如何做到这一点,谢谢。
更新:
所以我尝试preg_match
这样,但它只显示1
$config=file_get_contents('/root/config');
$currentprofile=preg_match('/^profile /', $config);
echo "Current Profile: ".$currentprofile;
请告诉我出了什么问题。
答案 0 :(得分:4)
我正准备回答你没有问过的问题。您最好使用parse_ini_string()或fgetcsv()。 .ini
文件需要以下格式profile='axisssh2'
,因此请替换空格:
$array = parse_ini_string(str_replace(' ', '=', file_get_contents($file)));
print_r($array);
收率:
Array
(
[profile] => axisssh2
[server] => 110.251.223.161
[source_update] => http://myweb.com:81/profile
[file_config] => udp.group-1194-exp11nov.ovpn
[use_config] => yes
[ssh_account] => sgdo.ssh
)
所以只是:
echo $array['profile'];
但你问题的答案是:
preg_match
返回匹配数(这就是你获得1的原因),但是你可以得到一个捕获组的实际匹配,它将填充第三个参数:
$config = file_get_contents('/root/config');
$currentprofile = preg_match("/^profile '(.*)'/", $config, $matches);
echo $matches[1];