php - 我不明白为什么我的变量为NULL

标签 php mysql zend-framework

首先,对不起,我的英语不好。所以我有一个问题,当我显示我的变量时,他返回我为NULL,我不知道为什么:(

Label.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;
    }
}


IndexController.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>';
        }
    }


Layout.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,
));
?>    


header.php

<?php var_dump($this->newMenu12); ?>


答:NULL

最佳答案

var_dump($toto = $oMessage - > getlibelle()); = array(13) {
[0] => array(1) {
    ["name"] => string(15)
    "Prise en charge"
} [1] => array(1) {
    ["name"] => string(16)
    "Liste des d�p�ts"
} [2] => array(1) {
    ["name"] => string(19)
    "Saisie par flashage"
} [3] => array(1) {
    ["name"] => string(11)
    "Supervision"
} [4] => array(1) {
    ["name"] => string(20)
    "Supervision des flux"
} [5] => array(1) {
    ["name"] => string(28)
    "Suivi des flux informatiques"
} [6] => array(1) {
    ["name"] => string(14)
    "Administration"
} [7] => array(1) {
    ["name"] => string(17)
    "Contr�le des RADM"
} [8] => array(1) {
    ["name"] => string(17)
    "Contr�le des RPEC"
} [9] => array(1) {
    ["name"] => string(12)
    "Surveillance"
} [10] => array(1) {
    ["name"] => string(7)
    "Journal"
} [11] => array(1) {
    ["name"] => string(15)
    "Journal de bord"
} [12] => array(1) {
    ["name"] => string(16)
    "Audit des depots"
} } array(13) {
[0] => array(1) {
    ["name"] => string(15)
    "Prise en charge"
} [1] => array(1) {
    ["name"] => string(16)
    "Liste des d�p�ts"
} [2] => array(1) {
    ["name"] => string(19)
    "Saisie par flashage"
} [3] => array(1) {
    ["name"] => string(11)
    "Supervision"
} [4] => array(1) {
    ["name"] => string(20)
    "Supervision des flux"
} [5] => array(1) {
    ["name"] => string(28)
    "Suivi des flux informatiques"
} [6] => array(1) {
    ["name"] => string(14)
    "Administration"
} [7] => array(1) {
    ["name"] => string(17)
    "Contr�le des RADM"
} [8] => array(1) {
    ["name"] => string(17)
    "Contr�le des RPEC"
} [9] => array(1) {
    ["name"] => string(12)
    "Surveillance"
} [10] => array(1) {
    ["name"] => string(7)
    "Journal"
} [11] => array(1) {
    ["name"] => string(15)
    "Journal de bord"
} [12] => array(1) {
    ["name"] => string(16)
    "Audit des depots"
} }

关于php - 我不明白为什么我的变量为NULL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53371226/

相关文章:

php 用数字 explode 定界符?

mysql - 在触发器中更新后更新同一行

php - 有没有办法在 zend 导航中有一个没有链接的导航条目?

php - Magento 设计模式

PHP : How to change page title of PDF in browser

php - debug_print_backtrace 不起作用

php - Docker mysql 连接失败与 laravel

php - 如何从数组中获取总和

检查时间戳的 php 文件

php - Zend 应用程序未安装 MySql 驱动程序错误