如何使用PHP从http.conf中检索变量

时间:2012-10-16 06:35:35

标签: php apache

如何使用PHP从http.conf中检索alias / MyDirectory /“C:/ MyDirectory / MyDirectory /”实例的变量。有没有比打开http.conf更简单的方法并逐行读取它?

由于

1 个答案:

答案 0 :(得分:0)

您始终可以使用fgets()从文件中读取单行。但是,为什么要修改程序中的服务器设置呢?

$handle = fopen('httpd.conf', 'r');
if($handle) {
    while($buffer = fgets($handle) !== false) {
        // do something with the data you read
    }
    if (!feof($handle)) {
        echo 'An error occured';
    }
    fclose($handle);
}