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


PHP Ds\Map skip()用法及代码示例


Ds \ Map::skip()函数是PHP中的一个内置函数,用于在给定的位置索引处返回该对。

用法:

Ds\Pair public Ds\Map::skip ( int $position )

参数:该函数接受单个参数$position,该参数用于返回从零开始的位置索引。


返回值:它在给定位置返回Ds \ Pair。

以下示例程序旨在说明PHP中的Ds \ Map::skip()函数:

程序1:

<?php  
  
// Declare a new map 
$map = new \Ds\Map(["a" => 1, "b" => 3, "c" => 5]);  
  
print_r($map->skip(1)); 
  
// Declare another new map 
$map = new \Ds\Map(["1" => "Geeks", "2" => "for",  
                                  "3" => "Geeks"]);  
  
print_r($map->skip(2)); 
  
?>
输出:
Ds\Pair Object
(
    [key] => b
    [value] => 3
)
Ds\Pair Object
(
    [key] => 3
    [value] => Geeks
)

程序2:

<?php  
  
// Declare a new map 
$map = new \Ds\Map(["Geeks1" => "computer",  
 "Geeks2" => "science", "Geeks3" => 5, "Geeks4" => 20]);  
  
print_r($map->skip(0)); 
  
// Declare another new map 
$map = new \Ds\Map(["x" => "A", "y" => "B", "z" => "C"]);  
  
print_r($map->skip(1)); 
  
?>
输出:
Ds\Pair Object
(
    [key] => Geeks1
    [value] => computer
)
Ds\Pair Object
(
    [key] => y
    [value] => B
)

参考: https://www.php.net/manual/en/ds-map.skip.php



相关用法


注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | Ds\Map skip() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。