search
Homephp教程php手册php-Arrays函数-array_diff_uassoc-用回调函数做索引检查来计算数组的差值

array_diff_uassoc() 函数 用回调函数做索引检查来计算数组的差集

【功能】
         该函数将返回一个数组,
         该数组包含了所有在array1中但是不在其他任何参数数组中的值。
         如果认为第一个参数小于、等于、或大于第二个参数时,必须返回
         一个小于零、等于零,或大于零的整数
【使用范围】
         php5(我用5.1.6测试过该函数,是不正确的。5.3.3是正确的,具体哪些版本好使有待验证)
【使用】
         array array_diff_uassoc( array array1, array array2[,array...,callback key_compare_func]  )
         array1/必需/数组1
         array2/必需/比较的数组 最少得有一个
         array.../可选/用来比较的数组
         key_compare_func.../必需/为用户提供作为比较标准的回调函数
【示例】
[php]
function myfunction($v1,$v2) { if ($v1===$v2) { return 0;  
} if ($v1>$v2) { return 1;  
} else { return -1;  
} } $a1=array(0=>"Dog",1=>"Cat",2=>"Horse");  
$a2=array(3=>"Dog",1=>"Cat",5=>"Horse");  
print_r(array_diff_uassoc($a1,$a2,"myfunction"));  
?> 
Array ( [0] => Dog [2] => Horse ) 

 


摘自 zuodefeng的笔记

Statement
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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!