array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'ds-map.values.php', 1 => 'Ds\\Map::values', 2 => 'Returns a sequence of the map\'s values', ), 'up' => array ( 0 => 'class.ds-map.php', 1 => 'Ds\\Map', ), 'prev' => array ( 0 => 'ds-map.union.php', 1 => 'Ds\\Map::union', ), 'next' => array ( 0 => 'ds-map.xor.php', 1 => 'Ds\\Map::xor', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/ds/ds/map/values.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

Ds\Map::values

(PECL ds >= 1.0.0)

Ds\Map::valuesReturns a sequence of the map's values

Опис

public Ds\Map::values(): Ds\Sequence

Returns a sequence containing all the values of the map, in the same order.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

A Ds\Sequence containing all the values of the map.

Приклади

Приклад #1 Ds\Map::values() example

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

Поданий вище приклад виведе щось схоже на:

object(Ds\Vector)#2 (3) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(3)
}