intersect函数_PHP array_intersect()函数与示例

intersect函数

PHP array_intersect()函数 (PHP array_intersect() Function )

array_intersect() function is used to find the matched elements from two or more elements. Function “array_intersect()” compares the values of the first array with the other arrays and returns matched elements.

array_intersect()函数用于从两个或多个元素中查找匹配的元素。 函数“ array_intersect()”将第一个数组的值与其他数组进行比较,并返回匹配的元素。

Syntax:

句法:

    array_intersect(array1, array2, [array3,...]);

Here, array1, array2 are the input arrays other arrays are an optional.

在这里, array1 , array2是输入数组,其他数组是可选的。

Examples:

例子:

    Input:
$arr1 = array("Hello", "Hi", "Okay", "Bye!");
$arr2 = array("Okay", "Hello", "Bye", "Hi");
Function calling: 
array_intersect($arr1, $arr2);
Output:
Array
(
[0] => Hello
[1] => Hi
[2] => Okay
)

PHP code 1: Comparing two string arrays.

PHP代码1:比较两个字符串数组。

<?php
//input array1    
$arr1 = array("Hello", "Hi", "Okay", "Bye!");
//input array2
$arr2 = array("Okay", "Hello", "Bye", "Hi");
//finding matched elements
$ans = array_intersect($arr1, $arr2);
print_r ($ans);
?>

Output

输出量

Array
(
[0] => Hello
[1] => Hi
[2] => Okay
)

PHP code 2:Comparing three arrays with strings & numbers.

PHP代码2:将三个数组与字符串和数字进行比较。

<?php
//input array1    
$arr1 = array(10, 20, 30, "Hello", 40, "Hi", 50);
//input array2
$arr2 = array(50, 60, "Hello", 70, 80);
//input array3
$arr3 = array(10, 20, "Hello", 50, "Hi", 30);
//finding matched elements
$ans = array_intersect($arr1, $arr2, $arr3);
print_r ($ans);
?>

Output

输出量

Array
(
[3] => Hello
[6] => 50
)

翻译自: https://www.includehelp.com/php/array_intersect-function-with-example.aspx

intersect函数

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/378819.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

很全的SQL注入语句

1、返回的是连接的数据库名and db_name()>02、作用是获取连接用户名and user>03、将数据库备份到Web目录下面;backup database 数据库名 to diskc:\inetpub\wwwroot\1.db;--4、显示SQL系统版本and 1(select VERSION) 或and 1convert(int,version)--5、判断xp_cmdshell扩展…

使用DataTable更新数据库

1、修改数据 DataRow dr hRDataSet.Tables["emp"].Rows.Find(textBox3.Text);//DataRow dr hRDataSet.Tables["emp"].Select("id"textBox3.Text)[0];dr.BeginEdit();dr["name"] textBox1.Text;dr.EndEdit();SqlCommandBuilder cmdn…

java异常体系_JAVA异常体系结构详解

一、什么是异常异常&#xff1a;程序在运行过程中发生由于硬件设备问题、软件设计错误等导致的程序异常事件。(在Java等面向对象的编程语言中)异常本身是一个对象&#xff0c;产生异常就是产生了一个异常对象。 ——百度百科二、异常体系Java把异常当作对象来处理&#xf…

对照片质量进行压缩

对照片质量进行压缩 其实无论是jpg还是png都是已经压缩编码化的格式罢了&#xff0c;原图片的大小要远远大于压缩编码后的格式 1&#xff0c;像素&#xff1a;图片放大到一定程度之后的一个个的小方块 2&#xff0c;RGB&#xff1a;每一个像素&#xff08;小方块&#xff09;都…

Silverlight访问 Apache服务器(Tomcat,Geronimo)中部署的Webservice

Silverlight 访问 Apache服务器中的Webservice 开发环境 Vs2010 、 Silverlight4 、 Java Jdk1.6 U 21 、 Apache-tomcat-6.0.20 、 Myeclipse8.5 、 Apache-ant-1.8.1 、 Axis2 、 Geronimo-tomcat6-javaee5-2.2. 下载地址&#xff1a; Apache-tomcat &#xff1a; http://apa…

那些帮助你成为优秀前端工程师的讲座——《性能篇》

这篇文章是前端优秀讲座和讨论列表系列连载第七篇&#xff0c;介绍前端性能优化技巧。前端领域发展迅速&#xff0c;只有时刻掌握前端发展趋势和技术动态&#xff0c;学习前沿的开发思想和理念才能让自己跟上时代的步伐&#xff0c;保持自己的技术优势。 您可能感兴趣的相关文章…

mca终端_MCA的完整形式是什么?

mca终端1)MCA&#xff1a;计算机应用硕士 (1) MCA: Master of Computer Application) MCA is an abbreviation of Master of Computer Application. It is a masters degree program for post-graduation in Computer applications. This post-graduate course duration is abo…

钢铁侠java_现代版“钢铁侠”,无所不能的程序员,java工程师实现人造器官!...

一位名叫利亚姆泽贝迪(Liam Zebedee)的软件工程师已经厌倦了糖尿病患者的生活挑战&#xff0c;因此他决定入侵他的胰岛素泵&#xff0c;并将其转变成一种崭新的高科技胰腺胰腺。Zebedee详细介绍了查找和订购零件的过程&#xff0c;为智能胰岛素泵编写软件的代码以及在其博客中组…

Windows下的Memcache安装 (转)

Windows下的Memcache安装&#xff1a;1. 下载memcache的windows稳定版&#xff0c;解压放某个盘下面&#xff0c;比如在c:\memcached2. 在终端&#xff08;也即cmd命令界面&#xff09;下输入 ‘c:\memcached\memcached.exe -d install’ 安装3. 再输入&#xff1a; ‘c:\memca…

C#中实现js中的eval函数功能

在js中有eval函数&#xff0c;比如 eval&#xff08;‘33*4’&#xff09;结果为15&#xff1b; 但C#中想要完成这样的功能&#xff0c;却没有相应的函数&#xff0c;可以用sql语句的方式实现&#xff0c;比如&#xff0c;执行 select 33*4 的方式。 可以先构造公式 Formula …

查看照片的指定位置的像素点值,并在照片中绘制一条指定像素颜色的线段

查看照片的指定位置的像素点值&#xff0c;并在照片中绘制一条指定像素的线段 import cv2 img cv2.imread(E:\Python-workspace\OpenCV\yanyu/beyond.png,1)#1为彩色图片&#xff0c;0为灰度图片 (b,g,r) img[20,20]#取照片的(20,20)处的像素点&#xff0c;左上角为(0,0)&am…

大数据和云计算涉及的技术_云计算涉及的风险

大数据和云计算涉及的技术In todays life using of cloud is very common among people, we use different clouds like Google cloud, cloud Azure etc. to store our photos, Videos, documents, data etc. to save space as well as we think that we will be able to retri…

int 转interger java_Java中Integer和int之间的转换

int到Integer:int a3;Integer Anew Integer(a);或:Integer AInteger.valueOf(a);Integer到int:Integer Anew Integer(5);int aA.intValue();至于Integer.parseInt(String str)则是将String类型转为int类型。int类型是放在栈空间的&#xff0c;Integer是作为对象放在堆空间的;in…

图像分割-二阶导数零交叉点的含义

已知&#xff1a; 二阶导数在灰度斜坡和灰度台阶过渡处会产生双边缘响应。 二阶导数的符号可以用于确定边缘的过渡是从亮到暗还是暗到亮。 斜坡开始处&#xff0c;二阶导数为负&#xff0c;斜坡结束二阶导数为正&#xff0c;斜坡上&#xff0c;二阶导数为0.&#xff08;亮到暗…

采购子系统-流程图、表结构、内容简介

设计说明&#xff1a; 流程图&#xff1a; 表结构&#xff1a; -- {*******************************************************} -- { } -- { GSP } -- { …

题目53:Goldbach's Conjecture

http://ac.jobdu.com/problem.php?cid1040&pid52 题目描述&#xff1a;Goldbachs Conjecture: For any even number n greater than or equal to 4, there exists at least one pair of prime numbers p1 and p2 such that n p1 p2. This conjecture has not been prov…

Anaconda下安装TensorFlow和OpenCV(都是心血呀~)

从国庆放假到现在的6号&#xff0c;我整整搞了将近五天多。安装个TensorFlow和OpenCV不下五次&#xff0c;各种问题各种解决&#xff0c;下载后卸载&#xff0c;卸载后下载&#xff0c;我快吐了啊这个国庆&#xff0c;但是最终还是达到了自己的目标&#xff08;我太难了&#x…

图像分割-基本边缘检测roberts,prewitt,sobel,canny,laplace

执行边缘检测的三个基本步骤&#xff1a; 1、为降噪对图像进行平滑处理。&#xff08;导数对噪声具有敏感性。图像的正负分量检测困难&#xff09; 2、边缘点的检测。&#xff08;提取边缘点的潜在候选者&#xff09; 3、边缘定位。&#xff08;从候选者中选出真是边缘点成员&a…

goroutine并发扫描MySQL表_goroutine 并发之搜索文件内容

golang并发编程 - 例子解析February 26, 2013最近在看《Programming in Go》, 其中关于并发编程写得很不错, 受益非浅, 其中有一些例子是需要多思考才能想明白的, 所以我打算记录下来, 强化一下思路《Programming in Go》在 Chapter 7. Concurrent Programming 里面一共用3个例…

软件开发模型和软件过程模型_什么是软件和软件过程?

软件开发模型和软件过程模型软件 (Software) Software is a set of instructions which instructs the computer for performing different operations. Software is nothing else but a general name for computer programs. 软件是一组指令&#xff0c;指导计算机执行不同的操…