php8.5
Home/ Manual/ ds / map/ Ds\Map::copy

Ds\Map::copy

PHP function Edit on GitHub ✎

(PECL ds >= 1.0.0)

Returns a shallow copy of the map

Description

Ds\Map::copy(): Ds\Map

Returns a shallow copy of the map.

Parameters Parameters

Return Values

Returns a shallow copy of the map.

Examples

Ds\Map::copy() example

php
<?php
$map = new \Ds\Map([
    "a" => 1,
    "b" => 2,
    "c" => 3,
]);

print_r($map->copy());
?>

The above example will output something similar to:

output
Ds\Map Object
(
    [0] => Ds\Pair Object
        (
            [key] => a
            [value] => 1
        )

    [1] => Ds\Pair Object
        (
            [key] => b
            [value] => 2
        )

    [2] => Ds\Pair Object
        (
            [key] => c
            [value] => 3
        )

)

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