PHP - Ds Vector::get() 函数



PHP 的 Ds\Vector::get() 函数用于检索向量中给定索引处的值。索引是向量中元素的位置,从“第 0 个”索引开始,到“n-1”结束,其中 n 是向量的长度。

如果指定的索引超出向量的长度或无效,则此函数将抛出 “OutOfRangeException” 异常。

语法

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

public Ds\Vector::get(int $index): mixed

参数

以下是此函数的参数:

  • $index − 访问元素的基于 0 的索引。

返回值

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

示例 1

以下是 PHP Ds\Vector::get() 函数的基本示例:

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

输出

以上程序产生以下输出:

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

示例 2

以下是 PHP Ds\Vector::get() 函数的另一个示例。我们使用此函数从该向量 (["Tutorials", "Point", "Tutorix"]) 中检索指定索引 2 处的元素:

<?php 
   $vector = new \Ds\Vector(["Tutorials", "Point", "Tutorix"]); 
   echo "The vector elements are: \n";
   print_r($vector);
   $index = 2;
   echo "The index value is: ".$index;
   echo "\nThe element at the given index ".$index." is: ";
   print_r($vector->get($index));
?>

输出

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

The vector elements are: 
Ds\Vector Object
(
    [0] => Tutorials
    [1] => Point
    [2] => Tutorix
)
The index value is: 2
The element at the given index 2 is: Tutorix

示例 3

如果指定的索引值无效,则 get() 函数会抛出“OutOfRangeException”异常:

<?php 
   $vector = new \Ds\Vector(['a', 'e', 'i', 'o', 'u']); 
   echo "The vector elements are: \n";
   print_r($vector);
   $index = 10;
   echo "The index value is: ".$index;
   echo "\nThe element at the given index ".$index." is: ";
   print_r($vector->get($index));
?>

输出

以上程序抛出如下异常:

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