Ds\Pair::clear
(No version information available, might only be in Git)
Ds\Pair::clear — Removes all values
Beschreibung
Removes all values from the pair.
Parameter-Liste
Diese Funktion besitzt keine Parameter.
Rückgabewerte
Es wird kein Wert zurückgegeben.
Beispiele
Beispiel #1 Ds\Pair::clear() example
<?php
$pair = new \Ds\Pair("a", 1);
print_r($pair);
$pair->clear();
print_r($pair);
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Ds\Pair Object ( [0] => 1 [1] => 2 [2] => 3 ) Ds\Pair Object ( )