首頁 > 後端開發 > php教程 > ,取值输出问题

,取值输出问题

WBOY
發布: 2016-06-20 12:45:27
原創
983 人瀏覽過

$idss = '3,2,7,5';$re = $db->findall('select id,title from aaa where id in('.$idss.')');foreach($re as $list){   echo $list['id'].',';}
登入後複製

输出结果是:2,3,5,7
怎么才能让它按照$idss的顺序输出:3,2,7,5, 呢?谢谢!


回复讨论(解决方案)

echo 3,2,5,7;

$db->findall
这个方法默认是按id排序吧,如果是需要修改这个方法。

select id,title from aaa where id in('.$idss.')

需要贴出结果集,以供分析

$db->findall
这个方法默认是按id排序吧,如果是需要修改这个方法。


//数据库执行语句   function query($sql){      if(!empty($sql)){	     $this->sql = $sql;		 $result = mysql_query($this->sql,$this->link_id);		 if(!$result){            return false;		 }else{		    $this->result = $result;			return $this->result;		 }      }else{		 return false;      }	     }   //获取数据列表 @param string $sql 查询语句 @return array 二维数组   public function findall($sql){      $result = $this->query($sql);      if ($result!==false){         $arr = array ();         $row = mysql_fetch_assoc($result);         while ($row){            $arr [] = $row;            $row = mysql_fetch_assoc($result);         }         return $arr;      }else{         return false;      }   }
登入後複製

这个类是从网上找的

$re = $db->findall("select id,title from aaa where id in($idss) order by fiind_in_set(id, '$idsd')");
登入後複製
登入後複製

select id,title from aaa where id in('.$idss.')

需要贴出结果集,以供分析


数据库结构:

$idss = '3,2,7,5';
$re = $db->findall('select id,title from aaa where id in('.$idss.')');
给出一个如3,2,7,5这样的ID字符串,想它按照3,2,7,5这个顺序输出对应的title的值。

$re = $db->findall("select id,title from aaa where id in($idss) order by fiind_in_set(id, '$idsd')");
登入後複製
登入後複製

$re = $db->findall("select id,title from table where find_in_set(id, ".$idss.")");
登入後複製


试试。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板