PHP | Ds\Map skip()函数
Ds\Map::skip()函数是PHP中的一个内置函数,用于返回给定位置索引处的对。
句法:
Ds\Pair public Ds\Map::skip ( int $position )
参数:此函数接受单个参数$position用于返回从零开始的位置索引。
返回值:返回给定位置的 Ds\Pair。
下面的程序说明了PHP中的Ds\Map::skip()函数:
方案一:
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
)
方案二:
"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