首先,对不起,我的英语不太好。所以我有一个问题,当我显示变量时,他返回null,我不知道为什么:(
标签.php
class Services_Label extends Services_Abstract
{
public function getlibelle()
{
$sRequest = 'SELECT NAME FROM menu WHERE id_application = 2';
$this->executeQueries($sRequest);
$aResult = $this->getAllRows();
$this->freeStatement();
return $aResult;
}
}
索引控制器.php
public function indexAction()
{
$oMessage = new Services_Label();
$toto = $oMessage->getlibelle();
$this->view->newMenu12 = $toto;
foreach ($toto as $data) {
foreach($data as $key => $value) {
echo $value[2] . '<br>';
}
}
布局.php
<?php
echo $this->partial('/common/header.phtml', array(
'notshowlogout' => (isset($this->notshowlogout) ? true : false),
'profils' => $this->profils,
'listeHabiUti' => $this->listeHabiUti,
'libmenu' => $this->libmenu,
'userName' => $this->userName,
'siteName' => $this->siteName,
'envName' => $this->envName,
'newMenu12' => $this->newMenu12,
));
?>
页眉
<?php var_dump($this->newMenu12); ?>
答案:空
1条答案
按热度按时间c90pui9n1#