PHP - Ds Sequence::reversed() 函数



PHP 的Ds\Sequence::reversed()函数用于检索当前序列的反向副本。反向副本是原始序列的副本,其中元素按反向顺序排列。

此函数不会影响当前实例,而是返回一个新的序列。

语法

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

abstract public Ds\Sequence::reversed(): Ds\Sequence

参数

此函数不接受任何参数。

返回值

此函数返回序列的反向副本。

示例1

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

<?php  
   $seq = new \Ds\Vector([1, 2, 3, 4, 5]);
   echo("The original sequence: \n"); 
   print_r($seq);
   echo("The reversed copy of the sequence: \n");
   #using reversed() function
   print_r($seq->reversed());  
?>

输出

上述程序产生以下输出:

The original sequence:
Ds\Vector Object
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
    [4] => 5
)
After reversing the sequence:
Ds\Vector Object
(
    [0] => 5
    [1] => 4
    [2] => 3
    [3] => 2
    [4] => 1
)

示例2

以下是PHP Ds\Sequence::reversed()函数的另一个示例。我们使用此函数来检索此序列(["Tutorials", "Point", "India"])的反向副本:

<?php  
   $seq = new \Ds\Vector(["Tutorials", "Point", "India"]);
   echo("The original sequence: \n"); 
   print_r($seq);
   echo("The reversed copy of the sequence: \n");
   #using reversed() function
   print_r($seq->reversed());  
?>

输出

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

The original sequence:
Ds\Vector Object
(
    [0] => Tutorials
    [1] => Point
    [2] => India
)
The reversed copy of the sequence:
Ds\Vector Object
(
    [0] => India
    [1] => Point
    [2] => Tutorials
)
php_function_reference.htm
广告