Table of Contents
1.直接利用array_unique函数
2.利用array_flip函数和array_keys函数一起作用
array_flip函数
array_keys函数
Home Backend Development PHP Tutorial PHP学习笔记去除数组中的重复数据

PHP学习笔记去除数组中的重复数据

Jun 23, 2016 pm 01:01 PM

在这总结两种PHP中去除数组中重复数据的方法

1.直接利用array_unique函数

利用array_unique函数可以直接将一个数组中的重复的值去除,只保留重复值中的第一次出现的值和其对应的键值

具体的说明可以查看PHP手册

例1:

$input = array("a" => "green", "red", "b" => "green", "blue", "red");$result = array_unique($input);print_r($result);
Copy after login

此时输出:

Array(    [a] => green    [0] => red    [1] => blue)
Copy after login

注意:在array_unique函数中,若出现 int(3) 和 string(1) '3' 时,函数会将这两个值认成同一个值,也只会保留先出现那个值例2:

$input = array(4, "4", "3", 4, 3, "3");$result = array_unique($input);var_dump($result);
Copy after login

此时会输出:

array(2) {  [0] => int(4)  [2] => string(1) "3"}
Copy after login

2.利用array_flip函数和array_keys函数一起作用

在利用array_unique函数是非常的方便,但是有一点,array_unique函数不会改变保留下来的值得原先的键值,这对于在某些情况下对于新数组的操作带来了困难,此时就可以利用array_flip函数和array_keys函数

array_flip函数

将指定数组的值和键值对调,将键名变成了值,而原先数组中的值成了键名,并且如果同一个值出现了多次,则最后一个键名将作为它的值,所有其它的都丢失了。例如:

$trans = array("a" => 1, "b" => 1, "c" => 2);$trans = array_flip($trans);print_r($trans);
Copy after login

此时输出:

Array(    [1] => b    [2] => c)
Copy after login

array_keys函数

array_keys函数,可以返回数组中部分的或所有的键名,这个比较好理解,如果指定了serch_value则是返回指定查询值的键值例如:

$array = array(0 => 100, "color" => "red");print_r(array_keys($array));$array = array("blue", "red", "green", "blue", "blue");print_r(array_keys($array, "blue"));$array = array("color" => array("blue", "red", "green"),               "size"  => array("small", "medium", "large"));print_r(array_keys($array));
Copy after login

此时会输出:

Array(    [0] => 0    [1] => color)Array(    [0] => 0    [1] => 3    [2] => 4)Array(    [0] => color    [1] => size)
Copy after login

介绍完两个函数的使用后,在遇到一个数据重复很多的数组时,想剔除中间重复的数据而又想键值从 ‘0’ 开始计数时,可以先对函数使用array_flip函数,然后在对新的数组使用array_keys函数,即可实现

补充:在编辑介绍array_keys函数的时候突然想到应该有个函数可以取出所有的数组的value的,查了一下果然有array_value函数,这个函数可以返回一个数组的所有的值并记录进新的数组,这样也可以实现键值从 ‘0’ 开始计数,所以想实现本篇文章的目的也可以先使用array_unique函数,接着对其使用array_value函数。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

HTTP Method Verification in Laravel HTTP Method Verification in Laravel Mar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

See all articles