Ver original<?php$foo = array(2, 3, 4);if (in_array(array(2, 3), $foo)) { echo 'Found';} else { echo 'Not Found';}