如何读取和循环这些MySQLi结果?

时间:2013-01-14 20:39:44

标签: php mysql mysqli

我目前正在将一些代码从mysql转换为mysqli。我已下载此课程: https://github.com/ajillion/PHP-MySQLi-Database-Class

我正在尝试这样简单的事情:

    $params = array('handset');
    $rs = $this->db->rawQuery("SELECT Id FROM productrates WHERE Type = ? ORDER BY GrossYearly ASC LIMIT 0,1 ", $params);   
    print_r($rs);

打印出来:

  

数组([0] =>数组([Id] => 100017))

当不使用这个类时,我之后使用了以下代码:

        if ($rs->num_rows != 0) {
        $row = $rs->fetch_assoc();

但是现在会产生错误:

  

消息:尝试获取非对象的属性

所以结果会回到数组中 - 我如何读取有多少结果然后循环它们?我知道这一定很简单,但我真的很困惑自己和时间,我需要一个快速的解决方案。

更多信息 - 这是rawQuery:

public function rawQuery($query, $bindParams = NULL) 
{
    $this->_query = filter_var($query, FILTER_SANITIZE_STRING);
    $stmt = $this->_prepareQuery();

    if (gettype($bindParams) === 'array') {
        $params = array('');        // Create the empty 0 index
        foreach ($bindParams as $prop => $val) {
            $params[0] .= $this->_determineType($val);
            array_push($params, $bindParams[$prop]);
        }

                call_user_func_array(array($stmt, "bind_param"),$this->refValues($params));

    }

    $stmt->execute();
    $this->reset();

    $results = $this->_dynamicBindResults($stmt);
    return $results;
}

3 个答案:

答案 0 :(得分:1)

if ($rs) {
    $row = $rs[0];
}

但最好下载这个:https://github.com/colshrapnel/safemysql
只需2行即可获得$ id

$sql = "SELECT Id FROM productrates WHERE Type = ?s ORDER BY GrossYearly LIMIT 1";
$id  = $this->db->getOne($sql, 'handset');   

答案 1 :(得分:1)

您的函数将数组返回到数组中:) 所以要显示第一个:

$FirstArray = $rs[0];

显示此数组中的所有项目:

foreach ($FirstArray as $result)
    echo $result;

希望有所帮助:)

答案 2 :(得分:-2)

PHP-MySQLi-Database-Class中没有活动开发。 我不认为你应该浪费你的时间.. 无论如何,它留给你。