私はphpで配列の配列を持っています。どちらの配列もインデックスがありません (キーを使用します)。
$this->confArr["$sectionName"] = Array(); // case 1
これは true を返します。
isset($this->confArr["$sectionName"]);
$sectionName という名前の要素が既に設定されているためです。
$this->confArr["$sectionName"]["$itemKey"] = $itemValue; //case 2
理由はわかりませんが、これは常に FALSE を返します
array_key_exists($itemKey, $this->confArr["$sectionName"]);
どうしたの ?