php如何刪除字串中的重複數位或字元

2020-07-16 10:05:53

程式碼如下:

$b = 'aaaaaaaaaaaaddddddttttttffff';  
$tmp = array();  
for($i = 0; $i < strlen($b); $i++){      
    $len = count($tmp);          
    for($j = 0; $j < $len; $j++){          
        if($b[$i] === $tmp[$j]){             
            break;          
        }      
    }      
if($j == $len){  //如果最後的$j和$len相等的話,則表示$tmp臨時陣列中不存在$b[$i]          
    $tmp[] = $b[$i];      
}  
}  
$result = implode($tmp);  
//輸出adtf
以上就是php如何刪除字串中的重複數位或字元的詳細內容,更多請關注TW511.COM其它相關文章!