當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP Ds\Map remove()用法及代碼示例


Ds \ Map::remove()函數是PHP中的內置函數,用於通過鍵刪除和返回值。

用法:

mixed Ds\Map::remove( $key, $default )

參數:該函數接受上述和以下描述的兩個參數:


  • $key:它擁有需要刪除的鍵值。
  • $default:它是可選參數,如果找不到 key ,則返回。

返回值:此函數返回已刪除的值。

異常:如果鍵不存在且未提供$default的值,則此函數將引發OutOfRangeException。

以下示例程序旨在說明PHP中的Ds \ Map::remove()函數:

範例1:

<?php  
  
// Declare new Map  
$map = new \Ds\Map([ 
    1 => "geeks", 
    2 => "for",  
    3 => "geeks", 
    4 => "DataStructures"
]);  
  
echo("Map Elements\n");  
  
// Display the map elements  
print_r($map);  
  
echo("\nRemoved element of the map:\n");  
  
// Use remove() function to remove  
// value at index 3 and return it  
var_dump($map->remove(3));  
  
?>
輸出:
Map Elements
Ds\Map Object
(
    [0] => Ds\Pair Object
        (
            [key] => 1
            [value] => geeks
        )

    [1] => Ds\Pair Object
        (
            [key] => 2
            [value] => for
        )

    [2] => Ds\Pair Object
        (
            [key] => 3
            [value] => geeks
        )

    [3] => Ds\Pair Object
        (
            [key] => 4
            [value] => DataStructures
        )

)

Removed element of the map:
string(5) "geeks"

例:

<?php  
  
// Declare new Map  
$map = new \Ds\Map([ 
    "a" => "geeks", 
    "b" => "for",  
    "c" => "geeks", 
    "d" => "DataStructures"
]);  
  
echo("Map Elements\n");  
  
// Display the map elements  
print_r($map);  
  
echo("\nRemoved element of the map:\n");  
  
// Use remove() function to remove  
// value at index 3 and return it  
var_dump($map->remove("c"));  
  
?>
輸出:
Map Elements
Ds\Map Object
(
    [0] => Ds\Pair Object
        (
            [key] => a
            [value] => geeks
        )

    [1] => Ds\Pair Object
        (
            [key] => b
            [value] => for
        )

    [2] => Ds\Pair Object
        (
            [key] => c
            [value] => geeks
        )

    [3] => Ds\Pair Object
        (
            [key] => d
            [value] => DataStructures
        )

)

Removed element of the map:
string(5) "geeks"

參考: https://www.php.net/manual/en/ds-map.remove.php



相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | Ds\Map remove() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。