doupu9251 2016-04-29 00:46
浏览 45
已采纳

Code Igniter(类stdClass的对象无法转换为字符串)erro

this is my model:

function Countosweb(){
    $sql="SELECT count(*) FROM `os` WHERE `status`='PENDIENTE ASIGNAR TÉCNICO'";
    return $this->db->query($sql)->row();
}

this is my controller:

public function indexp() {
    if((!$this->session->userdata('session_id')) || (!$this->session->userdata('logado'))){
        redirect('mapos/login');
    }
    $this->data['ordensW'] = $this->mapos_model->getOsWeb();
    $this->data['osn']= $this->mapos_model->Countosweb($sql);
    $this->data['ordens'] = $this->mapos_model->getOsAbertas();
    $this->data['produtos'] = $this->mapos_model->getProdutosMinimo();
    $this->data['os'] = $this->mapos_model->getOsEstatisticas();
    $this->data['estatisticas_financeiro'] = $this->mapos_model->getEstatisticasFinanceiro();
    $this->data['menuPainel'] = 'Painel';
    $this->data['view'] = 'mapos/panel';
    //$this->session->set_flashdata('success','mensaje de prueba');
    $this->load->view('tema/alte',$this->data);

}

and this is my view:

<a href="#" class="dropdown-toggle" data-toggle="dropdown">
                <i class="fa fa-bell-o"></i>
                <?php
                if($osn != null){echo '<span class="label label-warning">'.$osn.'</span>';} // this is the line which is occasinating the problem.
                ?>
           </a>

so i got this error:

A PHP ERROR WAS ENCOUNTERED

Severity: 4096

Message: Object of class stdClass could not be converted to string

Filename:tema/alte.php

line Number: 67

Please help to find the problem

PD: excuse me, my english is not very good

  • 写回答

3条回答 默认 最新

  • doujinai2183 2016-04-29 13:30
    关注

    thanks all for helping me, i solved it:

    i changed this:

    <a href="#" class="dropdown-toggle" data-toggle="dropdown">
                <i class="fa fa-bell-o"></i>
                <?php
                if($osn != null){echo '<span class="label label-warning">'.$osn.'</span>';} // this is the line which is occasinating the problem.
                ?>   
    </a>
    

    For this:

    <a href="#" class="dropdown-toggle" data-toggle="dropdown">
                    <i class="fa fa-bell-o"></i>
                    <?php
                    if($osn != null){
                      foreach($osn as $on){echo'<span class="label label-warning">'.$on.'</span>';} 
                    }
                    ?>
    </a>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 数学建模,尽量用matlab回答,论文格式
  • ¥15 昨天挂载了一下u盘,然后拔了
  • ¥30 win from 窗口最大最小化,控件放大缩小,闪烁问题
  • ¥20 易康econgnition精度验证
  • ¥15 msix packaging tool打包问题
  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能