📜  PHP | Ds\Deque first()函数

📅  最后修改于: 2022-05-13 01:56:37.761000             🧑  作者: Mango

PHP | Ds\Deque first()函数

Ds\Deque::first()函数是PHP中的一个内置函数,如果 Deque 不为空,则返回 Deque 中的第一个值。

句法:

public Ds\Deque::first( void ) : mixed

参数:此函数不接受任何参数。

返回值:如果双端队列不为空,则此函数返回双端队列中的第一个元素。

下面的程序说明了PHP中的Ds\Deque::first()函数:

方案一:

first());
  
?>
输出:
Elements in the Deque
Ds\Deque Object
(
    [0] => 10
    [1] => 20
    [2] => 3
    [3] => 40
    [4] => 50
    [5] => 6
)

First element in the deque: int(10)

方案二:

first());
  
?>
输出:
Elements in the Deque
Ds\Deque Object
(
    [0] => Geeks
    [1] => for
    [2] => GFG
)

First element in the deque: string(5) "Geeks"

参考: http: PHP。 PHP