转换为字符串数据库

时间:2016-05-09 11:01:37

标签: php database string

)我写了一个方法来显示数据库public的内容

function magazyn() {
        //return 'magazyn';
        $this->magazyn = $this->conn->prepare("SELECT * FROM `products` ORDER BY `nazwa`");
        //$this->magazyn->bind_param('ssss', $id, $nazwa, $kategoria, $sn);
        $this->magazyn->execute();
        $this->magazyn->store_result();
        return $this->magazyn;

        if ($this->magazyn->num_rows > 0) {
            echo "jest cos w magazynie";
        } else {
            echo "Brak produktw w bazie";
        }
    }

    function __toString() {
        return $this->magazyn;
    }

$web = new Web();
echo $web->magazyn();

在网站上我有错误:

  

捕获致命错误:类mysqli_stmt的对象不可能   在......中转换为字符串。

0 个答案:

没有答案