【问题标题】:php - Invalid argument supplied for foreach() [closed]php - 为 foreach() 提供的参数无效 [关闭]
【发布时间】:2013-12-25 00:26:55
【问题描述】:

嘿,我尝试使用 foreach 函数并收到此错误...我的代码是这样的。

我的 index.php

require_once 'core/init.php';
$user = DB::getInstance()->get('users', array('username', '=', 'kostas'));
if(!$user->count()) {
    echo "No user";
}else {
    foreach ($user->results() as $user) {
        # code...
        echo $user->username, '<br>';
    }
}

我的 DB.php 有这些功能

<?php
class DB {
    private static $_instance = null;
    private $_pdo, 
            $_query, 
            $_error=false, 
            $_results, 
            $_count=0;
    private function __construct(){
        try{
            $this->_pdo = new PDO('mysql:host=' . Config::get('mysql/host') . ';dbname=' . Config::get('mysql/db'), Config::get('mysql/username'), Config::get('mysql/password'));
        }catch(PDOException $e){
            die($e->getMessage());
        }
    }
    public static function getInstance(){
        if(!isset(self::$_instance)){
            self::$_instance = new DB();
        }
        return self::$_instance;
    }
    public function query($sql, $params = array()) {
        $this->_error = false;
        if($this->_query = $this->_pdo->prepare($sql)){
            $x = 1;
            if(count($params)){
                foreach ($params as $param) {
                    $this->_query->bindValue($x, $param);
                    $x++;
                }
            }
            if($this->_query->execute()){
                $this->_reults = $this->_query->fetchAll(PDO::FETCH_OBJ);
                $this->_count = $this->_query->rowCount();
            }else{
                $this->_error = true;
            }
        }
        return $this;
    }
    public function action($action, $table, $where = array()) {
        if(count($where) === 3) {
            $operators = array('=', '>', '<', '>=', '<=');
            $field      = $where[0];
            $operator   = $where[1];
            $value      = $where[2];
            if(in_array($operator, $operators)){
                $sql = "{$action} FROM {$table} WHERE {$field} {$operator} ?";
                if(!$this->query($sql, array($value))->error()){
                    return $this;
                }
            }
        }
        return false;
    }
    public function get($table, $where) {
        return $this->action('SELECT *', $table, $where);
    }
    public function delete($table, $where) {
        return $this->action('DELETE *', $table, $where);
    }
    public function results() {
        return $this->_results;
    }
    public function error() {
        return $this->_error; 
    }
    public function count() {
        return $this->_count;
    }
}
?>

你能告诉我这里可能出了什么问题吗??? 我的数据库已经在 users 表中有一个用户名为 kostas 的表,所以它应该正确地返回结果。

【问题讨论】:

  • 您的代码中有“$this->_reults”.. 错字..
  • 传递给类 get() 方法的错误参数将返回您未处理的布尔值 false:这不是这里的问题,但您应该解决它
  • 您可能会从this 帖子中受益。

标签: php mysql class pdo


【解决方案1】:

为您的变量尝试不同的名称

 foreach ($user->results() as $u) {
    //# code...
    echo $u->username, '<br>';
}

【讨论】:

    【解决方案2】:
    foreach ($user->results() as $user) {
    

    您在这里使用了两次相同的变量,这可能是问题吗?

    您可以重命名其中一个变量。这里我将第一个$user重命名为$userQuery,因为我觉得这样更清楚:

    $userQuery = DB::getInstance()->get('users', array('username', '=', 'kostas'));
    if(!$userQuery->count()) {
        echo "No user";
    }else {
        foreach ($userQuery->results() as $user) {
            # code...
            echo $user->username, '<br>';
        }
    }
    

    或者你可以在foreach中重命名变量:

    foreach ($user->results() as $usr) {
    

    【讨论】:

    • 这是一个愚蠢的错误,伙计们 $this->_reults = $this->_query->fetchAll(PDO::FETCH_OBJ);正确:$this->_results = $this->_query->fetchAll(PDO::FETCH_OBJ);无论如何感谢您的回答...
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2017-04-25
    • 2023-03-10
    • 1970-01-01
    • 2020-12-22
    • 2018-10-06
    相关资源
    最近更新 更多