Новые книги

В процессе чтения вы познакомитесь с основами программирования и, в частности, языка JavaScript, а также выполните несколько небольших проектов. Один из самых интересных проектов — создание своего языка программирования.
The first edition of this book started with the words: ‘A modern society could no longer function without the microprocessor.’

This is certainly still true but it is even truer if we include the microcontroller. While the microprocessor is at the heart of our computers, with a great deal of publicity, the microcontroller is quietly running the rest of our world. They share our homes, our vehicles and our workplace, and sing to us from our greetings cards. They are our constant, unseen companions and billions are being installed every year with little or no publicity. The purpose of this book is to give a worry-free introduction to microprocessors and microcontrollers. It starts at the beginning and does not assume any previous knowledge of microprocessors or microcontrollers and, in gentle steps, introduces the knowledge necessary to take those vital first steps into the world of the micro. John Crisp

array_intersect

Учебник РНР
Назад Вперёд

array_intersect

(PHP 4 >= 4.0.1)

array_intersect - обсчитывает пересечение массивов.

Описание

array array_intersect (array array1, array array2 [, array ...])

array_intersect() возвращает массив, содержащий все значения массива array1, которые имеются во всех аргументах. Обратите внимание, что ключи сохраняются.

Пример 1. array_intersect()
$array1 = array ("a" => "green", "red", "blue");
$array2 = array ("b" => "green", "yellow", "red");
$result = array_intersect ($array1, $array2);

Теперь $result содержит:

Array
(
    [a] => green
    [0] => red
)

Примечание: два элемента равны, если, и только если,
(string) $elem1 === (string) $elem2. Иначе говоря: когда представление строки - то же самое.

Предупреждение!

Этого не было в PHP 4.0.4!

См. также array_diff().


НазадОглавление Вперёд
array_flip Вверхarray_key_exists