Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这发生在多个地方,但这里有一个例子。我正在尝试从中获取名称服务器/etc/resolv.conf
/etc/resolv.conf
nameserver 1.1.1.1 nameserver 2.2.2.2
这是我的正则表达式,它仅适用于第一场比赛。为什么我不能在这里匹配所有的域名服务器?我的$match数组只有 ne 值。
$match
preg_match('/nameserver ([^\s]+)/', $fileContents, $match);
谢谢阅读。