我写了个sql类查询语句,一下是片段语句:
/**
* 查询方法
*
* @param $table 表名
* @param $where 查询条件
* @param $fields 查询字段 默认为*
* @param $type false返回单条记录,ture返回多条记录,默认为false
*
* @return $result 查询结果集,数组
* $tr gfhjgj
*/
function select($table,$where=1,$fields="*",$type=FALSE){
$sql="select $fields from $table where $where";
$query=$this->query($sql);
if($type==FALSE){
while($rs=$this->mysql_fetch_array($query)){
$result[]=$rs;
}
}else{
while($rs=$this->mysql_fetch_row($query)){
$result[]=$rs;
}
}
return $result;
}
月关宝盒