Ds\Pair::clear
(No version information available, might only be in Git)
Ds\Pair::clear — Removes all values
参数
此函数没有参数。
返回值
没有返回值。
示例
示例 #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 ( )
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。