第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

致命錯(cuò)誤:不能在第 38 行的 C:\xampp\htdocs\ov400\applicatio

致命錯(cuò)誤:不能在第 38 行的 C:\xampp\htdocs\ov400\applicatio

PHP
三國(guó)紛爭(zhēng) 2022-07-16 17:06:00
我收到錯(cuò)誤致命錯(cuò)誤:不能使用 stdClass 類型的對(duì)象作為我的控制器名稱中的數(shù)組是 Useraccountfunction userList() {      $result['data'] = $this->Useraccount_mod->getUser_list();   $data['userlist']=$result['data'] ;   $this->load->view('Useraccount/Userlist', $data);}模型名稱是 Useraccount_modfunction getUser_list() {    $query=$this->db->query("select * from users");    return $query->result();}和視圖名稱是用戶列表<tbody>    <?php    if ($userlist > 0) {        foreach ($userlist as $row) {            ?>            <tr>                                                        <td width="100"><?php echo $row['username']; ?></td>                 <td width="100"><?php echo $row['name']; ?></td>                 <td width="100"><?php echo $row['address']; ?></td>                 <td width="100"><?php echo $row['creatdate']; ?></td>                 <td width="100"><?php echo $row['updateddate']; ?></td>             </tr>            <?php        }    } else {        ?>        <tr>            <td colspan="3" align="center"><strong>No Record Found</strong></td>        </tr>        <?php    }    ?></tbody>遇到 PHP 錯(cuò)誤 嚴(yán)重性:錯(cuò)誤消息:不能使用 stdClass 類型的對(duì)象作為數(shù)組文件名:Useraccount/Userlist.php 行號(hào):38 回溯:
查看完整描述

1 回答

?
FFIVE

TA貢獻(xiàn)1797條經(jīng)驗(yàn) 獲得超6個(gè)贊

您正在使用result()函數(shù)來獲取記錄,但這會(huì)將記錄作為對(duì)象而不是數(shù)組。如果要獲取數(shù)組,則必須使用result_array()。


function userList() {   

   $data['userlist'] = $this->Useraccount_mod->getUser_list();

   $this->load->view('Useraccount/Userlist', $data);

}

方法一:


function getUser_list() {

  $query = $this->db->query("select * from users")->result_array(); //here we can use result() as well but it gives object not array

  return $query;

}



<tbody>

  <?php

  if ($userlist > 0) {

      foreach ($userlist as $row) {

          ?>

          <tr>                                        

              <td width="100"><?php echo $row['username']; ?></td> 

              <td width="100"><?php echo $row['name']; ?></td> 

              <td width="100"><?php echo $row['address']; ?></td> 

              <td width="100"><?php echo $row['creatdate']; ?></td> 

              <td width="100"><?php echo $row['updateddate']; ?></td> 

          </tr>

          <?php

      }

  } else {

      ?>

      <tr>

          <td colspan="3" align="center"><strong>No Record Found</strong></td>

      </tr>

      <?php

  }

  ?>

</tbody>

方法二:


function getUser_list() {

  $query = $this->db->query("select * from users")->result(); 

  return $query;

}



<tbody>

  <?php

  if ($userlist > 0) {

      foreach ($userlist as $row) {

          ?>

          <tr>                                        

              <td width="100"><?php echo $row->username; ?></td> 

              <td width="100"><?php echo $row->name; ?></td> 

              <td width="100"><?php echo $row->address; ?></td> 

              <td width="100"><?php echo $row->creatdate; ?></td> 

              <td width="100"><?php echo $row->updateddate; ?></td> 

          </tr>

          <?php

      }

  } else {

      ?>

      <tr>

          <td colspan="3" align="center"><strong>No Record Found</strong></td>

      </tr>

      <?php

  }

  ?>

</tbody>


查看完整回答
反對(duì) 回復(fù) 2022-07-16
  • 1 回答
  • 0 關(guān)注
  • 114 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)