[PHP-users 10405] Re: parse_ini_file関数の扱いについて

@ Edwin php-users@php.gr.jp
Sun, 29 Sep 2002 00:02:32 +0900


こんにちは。

On Saturday, September 28, 2002 11:02 PM
kazuhiro moriさん wrote:
> こんにちは、森と申します。
> 
> parse_ini_file関数の扱いについて質問させてください。
[snip]
> -------------------
> [first_section]
> aaa = 1,2,3,4
> bbb = 5,6,7,8
> 
> [second_section]
> ccc = 1,2,3,4
> ddd = 5,6,7,8
> -------------------
[/snip]

[snip]
> 
> $ini_array[second_section][ccc]では、Array。
> $ini_array[second_section][ccc][2]では、エラーとなってしまいます。
> 
[/snip]

これはどうでしょう?

  "{$ini_array[second_section][ccc][2]}"

つまり、

<?php

  $sanbanme = "{$ini_array[second_section][ccc][2]}";
  echo $sanbanme; // 結果は --> 3

?>

- E