배열을 병합하고 중복 배열을 제거하는 데 적합합니다. 직접 표시 www.appleshu.com
- $json='{
- "rec_items": [
- {
- "classes": "Fantasy",
- "gid": 6326585,
- "author": "나는 토마토를 먹어요",
- "nid": 10079306,
- "last_sort": 841,
- "last_chapter_name": "2권 15, 6장, 휩쓸려가다",
- "sub_count": 5364424,
- "novel_name": "The Wilderness",
- "last_update_time": 1393679718826
- },
- {
- "classes": "Fantasy",
- "gid": 6109786,
- "author": "당 가문의 세 번째 젊은 스승",
- "nid": 10079046,
- "last_sort" : 1153 ,
- "last_chapter_name": "381장 시작 액션(2부)",
- "sub_count": 3933876,
- "novel_name": "Peerless Tang Sect",
- "last_update_time ": 1393681654511
- },
- {
- "classes": "fantasy",
- "gid": 10645516,
- "author": "Chen Dong",
- "nid": 12649548 ,
- "last_sort": 478,
- "last_chapter_name": "432장 아내를 마을로 데려가기",
- "sub_count": 1422482,
- "novel_name": " 완벽한 세계",
- "last_update_time": 1393681655610
- },
- {
- "classes": "Fantasy",
- "gid": 4711723,
- "author": "그냥 "작은 새우" ,
- "nid": 12629406,
- "last_sort": 2603,
- "last_chapter_name": "2588장 각성! ",
- "sub_count": 2841630,
- "novel_name": "무니",
- "last_update_time": 1393605899300
- },
- {
- "classes": "Fantasy" ,
- "gid": 3701669,
- "author": "Cang Xiaotian",
- "nid": 8583556,
- "last_sort": 3427,
- "last_chapter_name": "No. 제2천이백이십오 공작왕! ",
- "sub_count": 606473,
- "novel_name": "武波九鄄",
- "last_update_time": 1391279170831
- },
- {
- "classes": " 판타지 ",
- "gid": 8141499,
- "author": "风灵天下",
- "nid": 9212380,
- "last_sort": 2579,
- "last_chapter_name": " 526화 구환 천제의 전투 [세븐]",
- "sub_count": 3082857,
- "novel_name": "자랑스러운 구천",
- "last_update_time": 1393677692614
- }
- ],
- "cate_book_items": [
- {
- "classes": "Fantasy",
- "gid": 4711723,
- "author": "그냥 작은 새우 ",
- "nid": 12629406,
- "last_sort": 2603,
- "last_chapter_name": "2588장 각성! ",
- "sub_count": 2841630,
- "novel_name": "무니",
- "last_update_time": 1393605899300
- },
- {
- "classes": "Fantasy" ,
- "gid": 3701669,
- "author": "Cang Xiaotian",
- "nid": 8583556,
- "last_sort": 3427,
- "last_chapter_name": "No. 제2천이백이십오 공작왕!",
- "sub_count": 606473,
- "novel_name": "武波九鄄",
- "last_update_time": 1391279170831
- },
- {
- "classes": " 판타지 ",
- "gid": 10645516,
- "author": "Chen Dong",
- "nid": 12649548,
- "last_sort": 478,
- "last_chapter_name": " 432화: 아내를 마을로 데려가다",
- "sub_count": 1422482,
- "novel_name": "완벽한 세계",
- "last_update_time": 1393681655610
- }
- ]
- }';
- function mult_unique($array)
- {
- $return = array();
- foreach($array as $key=>$v)
- {
- if(!in_array($v, $return))
- {
- $return[$key]=$v;
- }
- }
- return $return;
- }
-
- $json = get_object_vars(json_decode($json));
- $data = $json['rec_items'];
- $data = array_merge_recursive($data, $json[' cate_book_items ']);
-
- echo '
';</li>
<li>print_r($data);</li>
<li>echo '<br>';</li>
<li>print_r(mult_unique($data)) ; </li>
<li>echo ' ';
- ?>
코드 복사
|