Ds\Vector::find
(PECL ds >= 1.0.0)
Ds\Vector::find — Attempts to find a value's index.
Описание
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\Vector::find() example
<?php
$vector = new \Ds\Vector(["a", 1, true]);
var_dump($vector->find("a")); // 0
var_dump($vector->find("b")); // false
var_dump($vector->find("1")); // false
var_dump($vector->find(1)); // 1
?>
Результатом выполнения данного примера будет что-то подобное:
int(0) bool(false) bool(false) int(1)
- PHP Руководство
- Функции по категориям
- Индекс функций
- Справочник функций
- Расширения, относящиеся к переменным и типам
- Data Structures
- Ds\Vector::allocate
- Ds\Vector::apply
- Ds\Vector::capacity
- Ds\Vector::clear
- Ds\Vector::__construct
- Ds\Vector::contains
- Ds\Vector::copy
- Ds\Vector::count
- Ds\Vector::filter
- Ds\Vector::find
- Ds\Vector::first
- Ds\Vector::get
- Ds\Vector::insert
- Ds\Vector::isEmpty
- Ds\Vector::join
- Ds\Vector::jsonSerialize
- Ds\Vector::last
- Ds\Vector::map
- Ds\Vector::merge
- Ds\Vector::pop
- Ds\Vector::push
- Ds\Vector::reduce
- Ds\Vector::remove
- Ds\Vector::reverse
- Ds\Vector::reversed
- Ds\Vector::rotate
- Ds\Vector::set
- Ds\Vector::shift
- Ds\Vector::slice
- Ds\Vector::sort
- Ds\Vector::sorted
- Ds\Vector::sum
- Ds\Vector::toArray
- Ds\Vector::unshift
Коментарии
404 Not Found