php獲取數(shù)組中重復(fù)數(shù)據(jù)的兩種方法_PHP教程
推薦:解析PHP 使用curl提交json格式數(shù)據(jù)本篇文章是對(duì)PHP中使用curl提交json格式數(shù)據(jù)的實(shí)現(xiàn)方法進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下 復(fù)制代碼 代碼如下: $data = array(name = Hagrid, age = 36); $data_string = json_encode($data); $ch = curl_init('http://api.local/rest/users'); curl_setopt($ch, C
(1)利用php提供的函數(shù),array_unique和array_diff_assoc來實(shí)現(xiàn)
復(fù)制代碼 代碼如下:<?php
function FetchRepeatMemberInArray($array) {
// 獲取去掉重復(fù)數(shù)據(jù)的數(shù)組
$unique_arr = array_unique ( $array );
// 獲取重復(fù)數(shù)據(jù)的數(shù)組
$repeat_arr = array_diff_assoc ( $array, $unique_arr );
return $repeat_arr;
}
// 測(cè)試用例
$array = array (
'apple',
'iphone',
'miui',
'apple',
'orange',
'orange'
);
$repeat_arr = FetchRepeatMemberInArray ( $array );
print_r ( $repeat_arr );
?>
(2)自己寫函數(shù)實(shí)現(xiàn)這個(gè)功能,利用兩次for循環(huán)
復(fù)制代碼 代碼如下:
<?php
function FetchRepeatMemberInArray($array) {
$len = count ( $array );
for($i = 0; $i < $len; $i ++) {
for($j = $i + 1; $j < $len; $j ++) {
if ($array [$i] == $array [$j]) {
$repeat_arr [] = $array [$i];
break;
}
}
}
return $repeat_arr;
}
// 測(cè)試用例
$array = array (
'apple',
'iphone',
'miui',
'apple',
'orange',
'orange'
);
$repeat_arr = FetchRepeatMemberInArray ( $array );
print_r ( $repeat_arr );
?>
分享:基于flush()不能按順序輸出時(shí)的解決辦法如果是在linux下, 首先確認(rèn)是否添加 ob_start() 和 ob_flush(). 復(fù)制代碼 代碼如下: ob_start(); for ($i=1; $i=10; $i++) { echo $i.br /n; ob_flush(); flush(); usleep(500000); } 如果還是不能輸出的話, 就在代碼前面加上頭信息 復(fù)制代碼 代碼如下: header(Content
- PHPNOW安裝Memcached擴(kuò)展方法詳解
- php記錄頁面代碼執(zhí)行時(shí)間
- PHP中獎(jiǎng)概率的抽獎(jiǎng)算法程序代碼
- apache設(shè)置靜態(tài)文件緩存方法介紹
- php對(duì)圖像的各種處理函數(shù)代碼小結(jié)
- PHP 關(guān)于訪問控制的和運(yùn)算符優(yōu)先級(jí)介紹
- 關(guān)于PHP語言構(gòu)造器介紹
- php/js獲取客戶端mac地址的實(shí)現(xiàn)代碼
- php5.5新數(shù)組函數(shù)array_column使用
- PHP preg_match的匹配多國語言的技巧
- php 中序列化和json使用介紹
- php采集文章中的圖片獲取替換到本地
- 相關(guān)鏈接:
- 教程說明:
PHP教程-php獲取數(shù)組中重復(fù)數(shù)據(jù)的兩種方法。