1

私はPHPの問題を抱えています.結果を以下のようにしたいです:

123*thomas*Tiffany*Catherine*EnEn*Gabriel*Elizabeth*Ah Goh*

しかし、結果は次のようになります。

123*123*123*123*123*thomas*thomas*thomas*thomas*Tiffany*Tiffany*Tiffany*Tiffany*Catherine*Catherine*Catherine*Catherine*Catherine*EnEn*EnEn*EnEn*EnEn*Gabriel*Gabriel*Gabriel* Gabriel*Elizabeth*Elizabeth*Elizabeth*Elizabeth*Ah Goh*Ah Goh*Ah Goh*Ah Goh*Ah Goh*

誰でもこの問題を解決する方法を教えてもらえますか? ありがとう。

コードは次のとおりです。

$name = $_POST['Username'];

$data = mysql_query("SELECT * FROM User");                 
$data1 = mysql_query("SELECT Friends.responseRequest FROM User INNER JOIN Friends ON 
            User.username = Friends.sentRequest WHERE User.username = '$name' AND     Friends.status = 'approved'")or die(mysql_error());; 

$data2=mysql_query("SELECT Friends.sentRequest FROM User INNER JOIN Friends ON User.username = Friends.responseRequest WHERE User.username = '$name'
                 AND Friends.status = 'approved'");   


    $user = array();
    while($info1 = mysql_fetch_array($data)){
    array_push($user, $info1[username]);
    }

$friend =array();
     $getFriend1 = mysql_query("SELECT * FROM Friends WHERE sentRequest='$name' AND status='approved'");
     $getFriend2 = mysql_query("SELECT * FROM Friends WHERE responseRequest='$name' AND status='approved'"); 

     while($info2 = mysql_fetch_array($getFriend1)){
    array_push($friend , $info2[responseRequest]);
    }

     while($info3 = mysql_fetch_array($getFriend2)){
    array_push($friend , $info3[sentRequest]);
    }

    $newFriend = array_unique($friend);
    $newUser=array();
    for($i=0;$i<count($user);$i++){
        for($j=0;$j<count($newFriend);$j++){
            if($newFriend[$j]!=$user[$i]&&$user[$i]!=$name){
                echo $user[$i]."*";
            }
        }

    }

    mysql_close();
4

1 に答える 1

4

簡単な方法 (必ずしも最良であるとは限りません) は、結果を配列に分割し、重複を排除してから、パーツを再度結合することです。

<?php
$str = '123*123*123*123*123*thomas*thomas*thomas*thomas*Tiffany*Tiffany*Tiffany*Tiffany*Catherine*Catherine*Catherine*Catherine*Catherine*EnEn*EnEn*EnEn*EnEn*Gabriel*Gabriel*Gabriel*Gabriel*Elizabeth*Elizabeth*Elizabeth*Elizabeth*Ah Goh*Ah Goh*Ah Goh*Ah Goh*Ah Goh*';
$aux = array_unique(explode('*', $str));
$str = implode('*', $aux);
于 2012-12-10T14:25:42.990 に答える