次のPHP配列があります。
class MyItems {
$items = array(
'note' => array(),
'abstract' => array()
)
}
note
そして、follogin コードで配列にアクセスしたい:
$item = new MyItems();
$i = $item -> items;
echo $i['note'];
しかし、私は得るNotice: Undefined index: note