PHP - Ds Sequence::set() 函数



PHP 的 Ds\Sequence::set() 函数用于更新给定索引处的数值。索引是序列中元素的位置,从 0 开始,表示第一个元素,1 表示第二个元素,以此类推。

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

语法

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

public abstract void Ds\Sequence::set( int $index , mixed $value )

参数

以下是此函数的参数:

  • index - 要更新的值的基于 0 的索引。
  • value - 要替换成的新的值。

返回值

此函数不返回任何值。

示例 1

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

<?php
   $seq = new \Ds\Vector([10, 20, 30, 40, 50]);
   echo "The sequence elements are: \n";
   print_r($seq);
   echo "The updated sequence is: \n";
   #using set() function
   $seq->set(1, 100);
   print_r($seq);
?>

输出

以下是上述程序的输出:

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

示例 2

以下是 PHP Ds\Sequence::set() 函数的另一个示例。我们使用此函数在该序列 (["Tutorials", "Point", "India"]) 中的索引 2 处将现有值更新为 "Hyderabad":

<?php
   $seq = new \Ds\Vector(["Tutorials", "Point", "India"]);
   echo "The original sequence: \n";
   print_r($seq);
   $index = 2;
   $val = "Hyderabad";
   echo "The given index is: ".$index;
   echo "\nThe given value is: ".$val;
   echo "\nThe updated sequence: \n";
   #using set() function
   $seq->set($index, $val);
   print_r($seq);
?>

输出

上述程序产生以下输出:

The original sequence:
Ds\Vector Object
(
    [0] => Tutorials
    [1] => Point
    [2] => India
)
The given index is: 2
The given value is: Hyderabad
The updated sequence:
Ds\Vector Object
(
    [0] => Tutorials
    [1] => Point
    [2] => Hyderabad
)

示例 3

如果指定的索引 无效(即为负数),set() 函数将抛出“OutOfRangeException”异常:

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

输出

执行上述程序后,将显示以下内容:

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