PHP - Ds Sequence::get() 函数



PHP 的 Ds\Sequence::get() 函数用于在序列中检索指定索引处的值。“索引”表示序列中元素的位置,从 0 开始。这意味着索引值 0 表示第一个元素,1 表示第二个元素,依此类推。

如果指定的索引无效(即为负数或大于序列大小),则会抛出“OutOfRangeException”异常。

语法

以下是 PHP Ds\Sequence::get() 函数的语法:

public abstract mixed Ds\Sequence::get( int $index )

参数

此函数接受一个名为“index”的参数,如下所述:

  • index - 从 0 开始的索引,在其中搜索值。

返回值

此函数返回指定索引处的值。

示例 1

以下程序演示了 PHP Ds\Sequence::get() 函数的使用:

<?php 
   $seq = new \Ds\Vector([10, 20, 30, 40, 50]);
   echo "The sequence elements are: \n";
   print_r($seq);
   $index = 0;
   echo "The index is: ".$index;
   echo "\nThe value at index ".$index." is: ";
   #using get() function
   print_r($seq->get($index));
?>

输出

以上程序产生以下输出:

The sequence elements are:
Ds\Vector Object
(
    [0] => 10
    [1] => 20
    [2] => 30
    [3] => 40
    [4] => 50
)
The index is: 0
The value at index 0 is: 10

示例 2

以下是 PHP Ds\Sequence::get() 函数的另一个示例。我们使用此函数在此序列(["Tutorials", "Point", "Tutorix", "India"])中检索指定索引 2 处的值:

<?php 
   $seq = new \Ds\Vector(["Tutorials", "Point", "Tutorix", "India"]);
   echo "The sequence elements are: \n";
   print_r($seq);
   $index = 2;
   echo "The index is: ".$index;
   echo "\nThe value at index ".$index." is: ";
   #using get() function
   print_r($seq->get($index));
?>

输出

执行以上程序后,将显示以下输出:

The sequence elements are:
Ds\Vector Object
(
    [0] => Tutorials
    [1] => Point
    [2] => Tutorix
    [3] => India
)
The index is: 2
The value at index 2 is: Tutorix

示例 3

如果指定的索引值无效,则此函数会抛出“OutOfRangeException”异常。

<?php 
   $seq = new \Ds\Vector(['a', 'e', 'i', 'o', 'u']);
   echo "The sequence elements are: \n";
   print_r($seq);
   $index = -1;
   echo "The index is: ".$index;
   echo "\nThe value at index ".$index." is: ";
   #using get() function
   print_r($seq->get($index));
?>

输出

以上程序抛出以下异常:

The sequence elements are:
Ds\Vector Object
(
    [0] => a
    [1] => e
    [2] => i
    [3] => o
    [4] => u
)
The index is: -1
The value at index -1 is: PHP Fatal error:  Uncaught OutOfRangeException: 
Index out of range: -1, expected 0 <= x <= 4 in C:\Apache24\htdocs\index.php:9
Stack trace:
#0 C:\Apache24\htdocs\index.php(9): Ds\Vector->get(-1)
#1 {main}
  thrown in C:\Apache24\htdocs\index.php on line 9
php_function_reference.htm
广告