Ds\Vector::filter

(PECL ds >= 1.0.0)

Ds\Vector::filter Creates a new vector using a callable to determine which values to include

Description

public Ds\Vector::filter ([ callable $callback ] ) : Ds\Vector

Creates a new vector using a callable to determine which values to include.

Liste de paramètres

callback

callback ( mixed $value ) : bool

Optional callable which returns TRUE if the value should be included, FALSE otherwise.

If a callback is not provided, only values which are TRUE (see converting to boolean) will be included.

Valeurs de retour

A new vector containing all the values for which either the callback returned TRUE, or all values that convert to TRUE if a callback was not provided.

Exemples

Exemple #1 Ds\Vector::filter() example using callback function

<?php
$vector 
= new \Ds\Vector([12345]);

var_dump($vector->filter(function($value) {
    return 
$value == 0;
}));
?>

L'exemple ci-dessus va afficher quelque chose de similaire à :

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

Exemple #2 Ds\Vector::filter() example without a callback function

<?php
$vector 
= new \Ds\Vector([01'a'truefalse]);

var_dump($vector->filter());
?>

L'exemple ci-dessus va afficher quelque chose de similaire à :

object(Ds\Vector)#2 (3) {
  [0]=>
  int(1)
  [1]=>
  string(1) "a"
  [2]=>
  bool(true)
}