📜  PHP | Ds\skip()函数

📅  最后修改于: 2022-05-13 01:57:40.083000             🧑  作者: Mango

PHP | Ds\skip()函数

PHP Ds\Map 类的 skip()函数用于获取 Map 实例中特定索引处的键值对。索引作为参数传递给函数,函数返回映射中该索引处的 Pair。

注意:参数中传递的索引是从 0 开始的。即元素从索引 0 开始。

语法

public Ds\Map::skip(int $index)

参数:此函数接受单个参数$index ,该参数是需要从中返回键值对的索引。

返回值:该函数返回一对 Ds\Pair 类型,它是 Map 实例中存在于参数 $index 指定的索引处的键值对。



下面的程序说明了 skip()函数:

程序一

 10, 2 => 20, 3 => 30,
            4 => 40, 5 => 50, 6 => 60]);
  
// Key-Value pair present at index 3
print_r($map->skip(3));
  
?>

输出

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

方案二

 "Geeks", "second" => "for", 
                                "third" => "Geeks"]);
  
// Key-Value pair present at index 1
print_r($map->skip(1));
  
?>

输出

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

参考文献:http:// PHP.NET /手动/ EN / DS-map.skip。 PHP