


PHP multi-dimensional array removal of duplicate values example sharing_PHP tutorial
$json='{
"rec_items": [
"{
"classes": "Fantasy",
"gid": 6326585,
"author": "I eat tomatoes",
"nid ": 10079306,
"last_sort": 841,
"last_chapter_name": "Volume 25, Chapter 6",
"sub_count": 5364424,
"novel_name" : "The Wilderness",
"last_update_time": 1393679718826
},
"classes": "Fantasy",
"gi d": 6109786,
"author" : "The Third Young Master of the Tang Family",
"nid": 10079046,
"last_sort": 1153,
"last_chapter_name": "Chapter 381 Starts Action (Part 2)",
" sub_count": 3933876,
"novel_name": "Peerless Tangmen",
"last_update_time": 1393681654511
},
{
"classes": "Fantasy",
" gid": 10645516,
"author": "陈东",
"nid": 12649548,
"last_sort": 478,
"last_chapter _name": "Chapter 432 Carry your wife back to the village",
"sub_count": 1422482,
"novel_name": "Perfect World",
"last_update_time": 1393681655610
},
“classes” {
: "Fantasy",
"gid": 4711723,
"author": "Just a little shrimp",
"nid": 12629406,
"last_sort": 26 03,
"last_chapter_name ": "Chapter 2588 Wake up! ",
"sub_count": 2841630,
"novel_name": "武Ni",
"last_update_time": 1393605899300
},
,
"gid": 3701669,
"author": "Cang Xiaotian",
"nid": 8583556,
"last_sort": 3427,
"last_chapter_name": "Chapter Chapter Two Thousand Two Hundred and Twenty-Five The Peacock King!",
"sub_count": 606473,
"novel_name": "武波九鄄",
"last_update_time": 1391279170831
},
",
"gid": 8141499,
"author": "风灵天下",
"nid": 9212380,
"last_sort": 2579,
"last_chapter_name": " Chapter 526: Nine Tribulations, Battle of the Heavenly Emperor [Seven]",
"sub_count": 3082857,
"novel_name": "Proud of the Nine Heavens",
"last_update_time": 1393677692614
}
],
"cate_book_items": [
{
"classes": "Fantasy",
"gid": 4711723,
"author": "Just a little shrimp ",
"nid": 12629406,
"last_sort": 2603,
"last_chapter_name": "Chapter 2588 Awakening! ",
"sub_count": 2841630,
"novel_name": "武Ni",
"last_update_time": 1393605899300
},
,
"gid": 3701669,
"author": "Cang Xiaotian",
"nid": 8583556,
"last_sort": 3427,
"last_chapter_name": "Chapter Chapter Two Thousand Two Hundred and Twenty-Five The Peacock King! ",
"sub_count": 606473,
"novel_name": "武波九鄄",
"last_update_time": 1391279170831
},
",
"gid": 10645516,
"author": "Chen Dong",
"nid": 12649548,
"last_sort": 478,
"last_chapter_name": "Chapter Chapter 432: Carrying the Wife Back to the Village",
"sub_count": 1422482,
"novel_name": "Perfect World",
"last_update_time": 1393681655610
}
]
}';
function mult_unique($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 '
';
print_r($data);echo '
';print_r(mult_unique($data));
echo '< /pre>';
?>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Validator can be created by adding the following two lines in the controller.
