CakeFest 2024: The Official CakePHP Conference

Ds\Pair::clear

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

Ds\Pair::clearRemoves all values

Açıklama

public Ds\Pair::clear(): void

Removes all values from the pair.

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\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
(
)
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top