(Bir sürüm bilgisi bulunamadı; sadece SVN'de olabilir.)
Ds\Pair::clear — Removes all values.
Removes all values from the pair.
Bu işlevin değiştirgesi yoktur.
Hiçbir değer dönmez.
Örnek 1 Ds\Pair::clear() example
<?php
$pair = new \Ds\Pair("a", 1);
print_r($pair);
$pair->clear();
print_r($pair);
?>
Yukarıdaki örnek şuna benzer bir çıktı üretir:
Ds\Pair Object ( [0] => 1 [1] => 2 [2] => 3 ) Ds\Pair Object ( )