Ds \ Stack :: clear()PHP函数用于从堆栈中删除所有元素并清除它。此函数只是从堆栈中删除所有元素, 而不能完全删除它。它只是清空。
语法:
void public Ds\Stack::clear ( void )
参数:此功能不接受任何参数。
返回值:此函数不返回任何值。
下面的程序说明了Ds \ Stack :: clear()功能:
程序1:
<
?php// PHP program to illustarte the
// clear() function // Create a Stack instance
$stack = new \Ds\Stack();
// Pushing elements to Stack
$stack ->
push( "Welcome" );
$stack ->
push( "to" );
$stack ->
push( "GfG" );
// Print the stack
print_r( $stack );
// clear the stack
$stack ->
clear();
// Print the stack again
print_r( $stack );
?>
输出如下:
Ds\Stack Object
(
[0] =>
GfG
[1] =>
to
[2] =>
Welcome
)Ds\Stack Object
()
程式2::
<
?php// PHP program to illustarte the
// clear() function // Create a Stack instance
$stack = new \Ds\Stack();
// Pushing Mixed value elements to Stack
$stack ->
push( "Welcome" );
$stack ->
push( "to" );
$stack ->
push( "GfG" );
$stack ->
push(10);
$stack ->
push(5.5);
// Print the stack
print_r( $stack );
// clear the stack
$stack ->
clear();
// Print the stack again
print_r( $stack );
?>
输出如下:
Ds\Stack Object
(
[0] =>
5.5
[1] =>
10
[2] =>
GfG
[3] =>
to
[4] =>
Welcome
)Ds\Stack Object
()
【PHP Ds Stack clear()函数用法介绍】参考:http://php.net/manual/en/ds-stack.clear.php
推荐阅读
- Amazon ACMS面试体验
- 查找具有给定总和且在恒定空间中允许有负数的子数组
- PHP Ds Map capacity()函数用法示例
- PHP数组用法教程和详细指南
- CSS 不透明度/透明度使用代码实例
- 使用get方法导航链接– Selenium Python
- 页面设计(CSS如何实现复选框(checkbox)())
- CSS伪元素用法解析和代码示例
- Salesforce面试经验|s1(对于SDE-1)