dtmbc1606 2014-06-25 10:31
浏览 48
已采纳

使用mysqli fetch assoc()获取mysqli结果时出错

This is my class for connecting to a database and it has a query method for looping through the results but it gives me this error:

Fatal error: Call to undefined method mysqli::fetch_assoc() in C:\Apache24\htdocs\classes\DB.php on line 30

I know that the problem is in my query() method and I have tried using non static properties but the error continues.

<?php

    class DB {
        private static $db_name = "data_db";
        private static $db_user = "root";
        private static $db_pass = "root";
        private static $db_host = "localhost";

        private static $row;
        private static $instance = null;

        public static function get_instance() {
            if(!isset(self::$instance))
                self::$instance = new self;

            return self::$instance;
        }

        //returns mysqli object.
        private function __construct() {
            $this->mysqli = new mysqli(self::$db_host, self::$db_user, self::$db_pass, self::$db_name);
        }

        public function __destruct() {
            $this->mysqli->close();
        }

        public function query($query) {
        if ($result = $this->mysqli->query($query)) {
            if($result->num_rows > 1) {
                $rows = array();            
                while ($item = $result->fetch_assoc()) {
                    $rows[] = $item;
                }
            } else {
                $rows = $result->fetch_assoc();
            }

                return $rows;
        }
    }

        /**
         * Private clone method to prevent cloning of the instance of the
         * *Singleton* instance.
         *
         * @return void
         */
        private function __clone() {}

        /**
         * Private unserialize method to prevent unserializing of the *Singleton*
         * instance.
         *
         * @return void
         */
        private function __wakeup() {}

    }
?>
  • 写回答

1条回答 默认 最新

  • dougan7523 2014-06-25 10:41
    关注

    MySQLi object doesn't have method fetch_assoc. You must use query result. Example:

    public function query($query) {
        $result = $this->mysqli->query($query);
    
        $rows = array();
        while ($item = $result->fetch_assoc()) {
            $rows[] = $item;
        }
    
        return $items;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度