php8.5
Home/ Manual/ ds / set/ Ds\Set::reversed

Ds\Set::reversed

PHP function Edit on GitHub ✎

(PECL ds >= 1.0.0)

Returns a reversed copy

Description

Ds\Set::reversed(): Ds\Set

Returns a reversed copy of the set.

Parameters Parameters

Return Values

A reversed copy of the set.

Note

The current instance is not affected.

Examples

Ds\Set::reversed() example

php
<?php
$set = new \Ds\Set(["a", "b", "c"]);

print_r($set->reversed());
print_r($set);
?>

The above example will output something similar to:

output
Ds\Set Object
(
    [0] => c
    [1] => b
    [2] => a
)
Ds\Set Object
(
    [0] => a
    [1] => b
    [2] => c
)

Source: reference/ds/ds/set/reversed.xml · from the official PHP manual (php/doc-en)