以下の例では、ID の配列を取得して、それを while に変換してから、配列に戻して、ページのカンマで展開しています。確かにこれを行う簡単な方法があるはずです。
私は $row['ID'] の配列を求めています
function get_other_elector_phone($telephone,$current,$criteria){
$the_others = mysql_query("SELECT * FROM electors WHERE telephone = '$telephone' $criteria"); $results = '';
while($row = mysql_fetch_array($the_others)) {
$results .= $row['ID'].','; } return $results;
}
$others = get_other_elector_phone(g('electors',$elector,'telephone'),$elector,$criteria);
if($others){ $others = explode(',',$others);