📜  PHP | Ds\Deque clear()函数

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

PHP | Ds\Deque clear()函数

Ds\Deque::clear()函数是PHP中的一个内置函数,用于通过从 Deque 中删除所有元素来清除 Deque。

句法:

public Ds\Deque::clear( void ) : void

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

返回值:此函数不返回任何值。

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

方案一:

clear();
  
// Display the deque
print_r($deck);
  
?> 
输出:
Elements in the deck:
Ds\Deque Object
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
    [4] => 5
    [5] => 6
)
Ds\Deque Object
(
)

方案二:

clear();
  
echo("Alter clearing the elements\n");
// Display the deque
print_r($deck);
  
?> 
输出:
Elements in the Deque
Ds\Deque Object
(
    [0] => geeks
    [1] => for
    [2] => geeks
)
Alter clearing the elements
Ds\Deque Object
(
)

参考: http: PHP。 PHP