我正在寻找一些解析 Apache 配置文件的 PHP 实用程序,类似于这个 Perl 的模块: http://metacpan.org/pod/Apache:: ConfigParser
有什么线索吗?
我正在寻找一些解析 Apache 配置文件的 PHP 实用程序,类似于这个 Perl 的模块: http://metacpan.org/pod/Apache:: ConfigParser
有什么线索吗?
PEAR::Config支持 Apache 风格的配置文件。
看看手册http://pear.php.net/manual/en/package.configuration.config.avail-container.apache.php
$conf = new Config();
$root = $conf->parseConfig("/etc/apache2/httpd.conf", "apache");
print current($root->getItem('directive', 'Listen'))->content;
或类似的东西..