Dutch PHP Conference 2025 - Call For Papers

Ds\Sequence::find

(PECL ds >= 1.0.0)

Ds\Sequence::find Attempts to find a value's index

Опис

abstract public Ds\Sequence::find(mixed $value): mixed

Returns the index of the value, or false if not found.

Параметри

value

The value to find.

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

The index of the value, or false if not found.

Зауваження:

Values will be compared by value and by type.

Приклади

Приклад #1 Ds\Sequence::find() example

<?php
$sequence
= new \Ds\Vector(["a", 1, true]);

var_dump($sequence->find("a")); // 0
var_dump($sequence->find("b")); // false
var_dump($sequence->find("1")); // false
var_dump($sequence->find(1)); // 1
?>

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

int(0)
bool(false)
bool(false)
int(1)
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top