PHP を使用して http.conf からインスタンス エイリアス /MyDirectory/ "C:/MyDirectory/MyDirectory/" の変数を取得するにはどうすればよいですか。http.conf を開いて 1 行ずつ読むよりも簡単な方法はありますか?
ありがとう
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);
}