读取.conf文件PHP

时间:2017-03-31 02:24:02

标签: javascript php html twitter-bootstrap-3

我被困住了,希望有人可以帮助我。我试图在PHP中读取.conf文件以获取一些变量。

我的文件采用以下格式:

class: English
room: 150e

如何从课堂或房间获取价值?

1 个答案:

答案 0 :(得分:1)

这应该有效:

$file = 'yourfile.conf';
$contents = file($file);
foreach($contents as $line) {
    $e = explode(':', $line);
    $conf[trim($e[0])] = trim($e[1]);
}

现在您有一个包含配置的数组。