PHP | Ds\Deque contains()函数
Ds\Deque::contains()函数是PHP中的一个内置函数,用于检查元素是否存在于 Deque 中。
句法:
public Ds\Deque::contains( $values ) : bool
参数:该函数接受单个或多个值,需要检查该值是否存在于序列中。
返回值:如果元素存在于 Deque 中,此函数返回 true,否则返回 false。
下面的程序说明了PHP中的 Ds\Deque::contains()函数:
方案一:
contains(3));
?>
输出:
Elements in the deque
object(Ds\Deque)#1 (6) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
int(3)
[3]=>
int(4)
[4]=>
int(5)
[5]=>
int(6)
}
Checking for the element in the deque
bool(true)
方案二:
contains("GFG"));
?>
输出:
Elements in the deque
object(Ds\Deque)#1 (6) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
int(3)
[3]=>
int(4)
[4]=>
int(5)
[5]=>
int(6)
}
Checking for the element in the deque
bool(false)
参考: http: PHP。 PHP