Ds\Pair::clear

(No version information available, might only be in Git)

Ds\Pair::clearRemoves all values

說明

public Ds\Pair::clear(): void

Removes all values from the pair.

參數(shù)

此函數(shù)沒有參數(shù)。

返回值

沒有返回值。

范例

示例 #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
(
)