我有这个功能
public function select($table, $rows = '*', $join = null, $where = null, $order = null, $limit = null){
$q = 'SELECT '.$rows.' FROM '.$table;
if($join != null){
$q .= ' JOIN '.$join;
}
if($where != null){
$q .= ' WHERE '.$where;
}
if($order != null){
$q .= ' ORDER BY '.$order;
}
if($limit != null){
$q .= ' LIMIT '.$limit;
}
if($this->tableExists($table)){
$query = @mysql_query($q);
if($query){
$this->numResults = mysql_num_rows($query);
for($i = 0; $i < $this->numResults; $i++){
$r = mysql_fetch_array($query);
$key = array_keys($r);
for($x = 0; $x < count($key); $x++){
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{
array_push($this->result,mysql_error());
return false; // No rows where returned
}
}else{
return false;
}
}
如果我使用此功能并且我的数据库为空,则我的数组看起来像这样
Array( )
这很好!
如果我的数据库有1个条目,它看起来像这样:
Array
(
[id] => 1
[a] => 0
[b] => 0
)
这不太好,因为如果它的条目数多于1,则它看起来像这样:
Array
(
[0] => Array
(
[id] => 1
[a] => 0
[b] => 0
)
[1] => Array
(
[id] => 2
[a] => 1
[b] => 1
)
)
我想要的是,带有一个条目的输出如下所示:
Array
(
[0] => Array
(
[id] => 1
[a] => 0
[b] => 0
)
)
如何更改功能以获得此输出?
答案 0 :(得分:0)
更改
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]];
}
与
if(mysql_num_rows($query) >= 1){
$this->result[$i][$key[$x]] = $r[$key[$x]];
}else{
$this->result = null;
}
答案 1 :(得分:0)
您的错误就在行中:
if(mysql_num_rows($query) > 1){
您必须考虑第一行,因此“&gt; 1”变为“&gt; 0”
整个功能应如下所示:
public function select($table, $rows = '*', $join = null, $where = null, $order = null, $limit = null){
$q = 'SELECT '.$rows.' FROM '.$table;
if($join != null){
$q .= ' JOIN '.$join;
}
if($where != null){
$q .= ' WHERE '.$where;
}
if($order != null){
$q .= ' ORDER BY '.$order;
}
if($limit != null){
$q .= ' LIMIT '.$limit;
}
if($this->tableExists($table)){
$query = @mysql_query($q);
if($query){
$this->numResults = mysql_num_rows($query);
for($i = 0; $i < $this->numResults; $i++){
$r = mysql_fetch_array($query);
$key = array_keys($r);
for($x = 0; $x < count($key); $x++){
if(!is_int($key[$x])){
if(mysql_num_rows($query) > 0)
$this->result[$i][$key[$x]] = $r[$key[$x]];
else
$this->result = null;
}
}
}
return true;
}else{
array_push($this->result,mysql_error());
return false; // No rows where returned
}
}else{
return false;
}
}