Ds\Collection::clear

(PECL ds >= 1.0.0)

Ds\Collection::clearRemoves all values

Açıklama

publicDs\Collection::clear(): void

Removes all values from the collection.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

Hiçbir değer dönmez.

Örnekler

Örnek 1 Ds\Collection::clear() example

<?php
$collection
= new \Ds\Vector([1, 2, 3]);
print_r($collection);

$collection->clear();
print_r($collection);
?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

Ds\Vector Object ( [0] => 1 [1] => 2 [2] => 3 ) Ds\Vector Object ( )
To Top