当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。