(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.
Note:
Values will be compared by value and by type.
Example #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
?>
The above example will output something similar to:
int(0) bool(false) bool(false) int(1)
Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!
Check out: eBank.nz (Art Generator) |
Netwrck.com (AI Tools) |
Text-Generator.io (AI API) |
BitBank.nz (Crypto AI) |
ReadingTime (Kids Reading) |
RewordGame |
BigMultiplayerChess |
WebFiddle |
How.nz |
Helix AI Assistant