Ds\Sequence::find
(PECL ds >= 1.0.0)
Ds\Sequence::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\Sequence::find() example
<?php$sequence = new \Ds\Vector(["a", 1, true]);var_dump($sequence->find("a")); // 0var_dump($sequence->find("b")); // falsevar_dump($sequence->find("1")); // falsevar_dump($sequence->find(1)); // 1?>
上の例の出力は、 たとえば以下のようになります。
int(0) bool(false) bool(false) int(1)