0

我有一个包含一些代码的 .cfg 文件。我想在 php 页面中显示整个 .cfg。my_config.cfg 的代码在这里:

# ATA/IDE/MFM/RLL support
#
account_name=changl
#
# IDE, ATA and ATAPI Block devices
#
CONFIG_BLK_DEV_IDE=y
CONFIG_BLK_DEV_IDEDISK=y
CONFIG_BLK_DEV_IDECD=n

现在我写了一个 php 代码来检查条件并显示我在 echo 中写的内容。但不是那样,我想显示文件中的所有内容。这是php代码:

<?php
$config_file = "my_config.cfg";
$comment = "#";

$fp = fopen($config_file, "r");

while (!feof($fp)) {
  $line = trim(fgets($fp));
  if ($line && !preg_match("/^$comment/", $line)) {
    $pieces = explode("=", $line);
    $option = trim($pieces[0]);
    $value = trim($pieces[1]);
    $config_values[$option] = $value;
  }
}
fclose($fp);

if ($config_values['account_name'] == "changl")
  echo "account_name is changl";
else
  echo "account_name is not changl";
?>

代码工作正常。但我想在文件中显示数据。请任何帮助表示赞赏。

4

1 回答 1

1

最简单的方法是使用parse_ini_file()

$config_values = parse_ini_file('my_config.cfg');

之后,您可以$config_values使用任何其他常规数组

于 2012-07-03T21:01:31.530 回答