Pair
PHP Manual

Ds\Pair::clear

(Bir sürüm bilgisi bulunamadı; sadece SVN'de olabilir.)

Ds\Pair::clearRemoves all values.

Açıklama

public void Ds\Pair::clear ( void )

Removes all values from the pair.

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

Hiçbir değer dönmez.

Örnekler

Ö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
(
)

Pair
PHP Manual