suchen

Heim  >  Fragen und Antworten  >  Hauptteil

In Zeile 77 steht, dass die Funktion fetch() nicht von Objekten aufgerufen wird. Kann mir das bitte jemand erklären?

<?phpclass Db{ private $dbConfig=[                                                                           'port'=>'3306', 'user'=> ;'root , ]; //Einzelfallmodus private static $instance = null; public $insertID = null ; public $num1 = null; ///Datenbankverbindung private $conn = private function __construct($params) { //Initialisierungsparameter array_merge($this->dbConfig, $params); this->connect(); } private function __clone() { // TODO: Implementiere die __clone()-Methode } public static function getInstance($params=[]) { if(!self::$instance exampleof self){ self::$instance = new self($params); return self::$instance; private function connect() { try { $dsn="{$this->dbConfig['db']}:host= {$ this->dbConfig['host']}; this->dbConfig['charset']}";                                                                                                                                                                 'bestanden']);Catch (pdoException $ E) {DIE ('Datenbankverbindungsfehler'. $ e- & gt; getMessage ());} public function exec ($ SQL) {$ NUM = $ this- & gt; ; EC ($ sql); if($num>0) if(null !== $this->conn->lastInsertID()) { $this->insertID = $this->conn -> lastInsertID (); fetch(PDO::FETCH_ASSOC); } public function fetchALL($sql) { return $this->conn->query($sql)->fetch(PDO::FETCH_ASSOC);;

远处一朵花远处一朵花1413 Tage vor791

Antworte allen(1)Ich werde antworten

  • 灭绝师太

    灭绝师太2021-01-12 09:08:06

    pdo对象没有获取成功,调用了一个对象成员方法fetch, 检查连接参数.

    Antwort
    0
  • StornierenAntwort