Ds\Pair::clear
Ds\Pair::clear
(没有可用的版本信息,可能只在Git中)
Ds \ Pair :: clear - 删除所有值。
Description
public void Ds\Pair::clear ( void )
删除该对中的所有值。
Parameters
该功能没有参数。
Return Values
没有值返回。
Examples
Example #1 Ds\Pair::clear() example
<?php
$pair = new \Ds\Pair("a", 1
print_r($pair
$pair->clear(
print_r($pair
?>
上面的例子会输出类似于:
Ds\Pair Object
(
[0] => 1
[1] => 2
[2] => 3
)
Ds\Pair Object
(
)
← Pair
Ds\Pair::__construct →
© 1997–2017 The PHP Documentation Group
根据知识共享署名许可证v3.0或更高版本授权。