强制嵌套数组



我有以下代码,如果找到一个结果,它将返回一个简单数组,如果找到更多结果,则返回一个嵌套数组。

$query = @mysql_query( $q );
if ( $query ) {
    $this->num_rows = mysql_num_rows( $query );
    for ( $i = 0; $i < $this->num_rows; $i++ ) {
        $r = mysql_fetch_array( $query );
        $key = array_keys( $r );
        for ( $x = 0; $x < count($key); $x++ ) {
            // Sanitizes keys so only alphavalues are allowed
            if( !is_int( $key[$x] ) ) {
                if ( mysql_num_rows( $query ) > 1 ) {
                    $this->result[$i][$key[$x]] = $r[$key[$x]];
                } else if ( mysql_num_rows( $query ) < 1 ) {
                    $this->result = null;
                } else {
                    $this->result[$key[$x]] = $r[$key[$x]];
                }
            }
        }
    }
    return true;
} else {
    return false;
}

如何强制它始终返回嵌套数组而不是简单数组?

我认为您的代码可以简化为:

$query = @mysql_query( $q );
if ( $query ) {
    $this->num_rows = mysql_num_rows( $query );
    if($this->num_rows) {
        $this->result = array();
        while(($row = mysql_fetch_assoc($query))) {
            $this->result[] = $row;
        }
    }
    else {
        $this->result = null;
    }
    return true;
}
else {
    return false;
}

参考:mysql_fetch_assoc

提示:阅读并浏览文档。

使用您的代码(我认为)这就是您所需要的:

if ( mysql_num_rows( $query ) > 1 ) {
    $this->result[$i][$key[$x]] = $r[$key[$x]];
} else if ( mysql_num_rows( $query ) < 1 ) {
    $this->result = null;
} else {
    // adding index 0 to $this->result[0] or you could use $i (maybe)
    $this->result[0][$key[$x]] = $r[$key[$x]]; 
}

相关内容

  • 没有找到相关文章

最新更新