Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

두 개의 배열이 있는 Foreach 루프와 일치하는 값을 찾기 위한 if 조건 평가 PHP?

<시간/>

다음 두 개의 배열이 있다고 가정해 보겠습니다.

$firstArray=array(10,20,30,40,50);
$secondArray=array(100,80,30,40,90);

일치하는 항목을 찾아야 합니다. 즉, 출력은

여야 합니다.
30
40

예시

PHP 코드는 다음과 같습니다

<!DOCTYPE html>
<html>
<body>
<?php
$firstArray=array(10,20,30,40,50);
$secondArray=array(100,80,30,40,90);
foreach($firstArray as $f){
   foreach($secondArray as $s){
      if($f==$s){
         echo "The matching result is=",$f,"<br>";
      }
   }
}
?>
</body>
</html>

출력

그러면 다음과 같은 출력이 생성됩니다.

The matching result is=30
The matching result is=40