PHP - Funzione Ds Map remove ()
La funzione Ds \ Map :: remove () può rimuovere e restituire un valore tramite chiave.
Sintassi
public mixed Ds\Map::remove( mixed $key [, mixed $default ] )
La funzione Ds \ Map :: remove () può rimuovere e restituire un valore tramite chiave o restituire un valore predefinito opzionale se non è possibile trovare una chiave.
La funzione Ds \ Map :: remove () può restituire un valore che è stato rimosso o un valore predefinito, se fornito, e non è possibile trovare una chiave in una mappa.
La funzione Ds \ Map :: remove () può generare OutOfBoundsException se non è possibile trovare una chiave e non è stato fornito un valore predefinito.
Esempio 1
<?php
$map = new \Ds\Map([1 => "Tutorials", 2 => "Point", 3 => "India", 4 => "Tutorix"]);
echo("The map elements are: \n");
print_r($map);
echo("\n The removed element of a map: \n");
var_dump($map->remove(3));
?>
Esempio 2
<?php
$map = new \Ds\Map(["a" => "Tutorials", "b" => "Point", "c" => "India", "d" => "Tutorix"]);
echo("The map elements are: \n");
print_r($map);
echo("\n The removed element of a map: \n");
var_dump($map->remove("c"));
?>