codeigniter - php 新手 问题

WBOY
Libérer: 2016-06-06 20:45:10
original
1160 Les gens l'ont consulté

model

<code>    class Stock_model extends CI_Model{

        private $hsh;
        function __construct()
        {
            parent::__construct();
            $_ci = & get_instance();


            //$this->hsh = $_ci->load->database('hsh',TRUE);
            $hsh = $_ci->load->database('hsh',TRUE);
        }



        function  get_stock($goods_huo)
        {
            if(isset($goods_huo))
            {
                $hsh->where('item_huo',$goods_huo);
                $query =  $hsh->get('item_info');

                return $query->result_array();
                $query->free_result();

            }
        }
    }
</code>
Copier après la connexion
Copier après la connexion

报错

<code><h4>A PHP Error was encountered</h4>
<p>Severity: Notice</p>
<p>Message:  Undefined variable: hsh</p>
<p>Filename: models/stock_model.php</p>
<p>Line Number: 22</p>
<br>
<b>Fatal error</b>:  Call to a member function where() on a non-object in <b>D:\htdocs\application\models\stock_model.php</b> on line <b>22</b><br>
</code>
Copier après la connexion
Copier après la connexion

刚学,很多问题不懂 ! 这是用的CI

回复内容:

model

<code>    class Stock_model extends CI_Model{

        private $hsh;
        function __construct()
        {
            parent::__construct();
            $_ci = & get_instance();


            //$this->hsh = $_ci->load->database('hsh',TRUE);
            $hsh = $_ci->load->database('hsh',TRUE);
        }



        function  get_stock($goods_huo)
        {
            if(isset($goods_huo))
            {
                $hsh->where('item_huo',$goods_huo);
                $query =  $hsh->get('item_info');

                return $query->result_array();
                $query->free_result();

            }
        }
    }
</code>
Copier après la connexion
Copier après la connexion

报错

<code><h4>A PHP Error was encountered</h4>
<p>Severity: Notice</p>
<p>Message:  Undefined variable: hsh</p>
<p>Filename: models/stock_model.php</p>
<p>Line Number: 22</p>
<br>
<b>Fatal error</b>:  Call to a member function where() on a non-object in <b>D:\htdocs\application\models\stock_model.php</b> on line <b>22</b><br>
</code>
Copier après la connexion
Copier après la connexion

刚学,很多问题不懂 ! 这是用的CI

<code class="lang-php">//$this->hsh = $_ci->load->database('hsh',TRUE);
$hsh = $_ci->load->database('hsh',TRUE);
</code>
Copier après la connexion

Message: Undefined variable: hsh
未定义变量hsh
你把$hsh都改为$this->hsh。
随便建议一下,应该把基础打好了再用框架,过早使用框架只会抑制你的成长。

$hsh 换成 $this->hsh

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal