我有一个包含以下内容的文件:
ServerName www.example.com ServerAlias example.com.com ServerAlias www.example.com.k.net ServerAlias example.com.net ServerAdmin "me.example.com" DocumentRoot "/web/docroot/0/example.com/htdocs " AssignUserId user1example.com user1example.com 包括 /www/vhost-include
我希望能够/web/docroot/0/example.com/htdocs
从文件中提取完全匹配的内容。使用 bash grep 很容易,但是 - 我正在尝试在 PHP 中执行此操作。另请注意,出于安全原因,我们不允许从 PHP 执行 bash。
我努力了:
$loc = file_get_contents($path_to_file);
preg_match("\/web.*$", $loc, $f);
print_r($f); //nothing comes out