mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +00:00
20 lines
331 B
PHP
20 lines
331 B
PHP
<?php
|
|
$fst = [
|
|
'a' => 'зеленый',
|
|
'синий',
|
|
'красный',
|
|
'желтый'
|
|
];
|
|
$snd = [
|
|
'b' => 'синий',
|
|
'желтый',
|
|
'красный'
|
|
];
|
|
|
|
$result = array_intersect($fst, $snd);
|
|
|
|
echo '<pre>';
|
|
print_r($result);
|
|
echo '</pre>';
|
|
|