Maison > php教程 > PHP源码 > 多维数组去重和查找

多维数组去重和查找

PHP中文网
Libérer: 2016-05-25 17:14:00
original
1330 Les gens l'ont consulté

看代码:
$a = array(array('p', 'h'), array('p', 'r'), 'o');

if (in_array(array('p', 'h'), $a)) {
echo "'ph' was found\n";
}
if (in_array(array('f', 'i'), $a)) {
echo "'fi' was found\n";
}
if (in_array('o', $a)) {
echo "'o' was found\n";
}

支持多维数组查找!

$key=array('0'=>array('en_term' =>'h','pos'=>'n','cn_define'=>'你'),'1'=>array('en_term' =>'w','pos'=>'n','cn_define'=>'好'));

//bool(true)
var_dump(in_array(array('en_term' =>'h','pos'=>'n','cn_define'=>'你'),$key));

关于去重操作,可用定义一个临时数组,来解决问题!

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Recommandations populaires
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal