PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

Ds\Sequence::find - Attempts to find a value's index. | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

Ds\Sequence::find

(PECL ds >= 1.0.0)

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

説明

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

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"1true]);

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)

忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「Ds\Sequence::find - Attempts to find a value's index.」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | Ds\Sequence::find - Attempts to find a value's index.」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: