<?php
$arr_a
=
array
(
"a"
,
"b"
), 1, 2);
$arr_b
);
if
(in_array(
)){
echo
'数组 $arr_b 在 $arr_a 数组中存在'
;
}
else
{
'数组 $arr_b 在 $arr_a 数组中不存在'
?>