Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コントローラーに配列があります:
$data = array( 'a' => "Hay", 'b' => "Bee", 'c' => "Sea", ); $this->view->assign($data);
ビューでは何も返されません:
<?php echo $this->data['a']; ?> <?php var_dump($this->data); ?>
コントローラーでこれを試してください
$this->view->data = $data;
より良い説明については、Zend マニュアルにアクセスしてください