| | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
Ds\Set::filter(PECL ds >= 1.0.0) Ds\Set::filter — Creates a new set using a callable to determine which values to include. 説明Creates a new set using a callable to determine which values to include. パラメータ
返り値
A new set containing all the values for which
either the 例例1 Ds\Set::filter() example using callback function
<?php上の例の出力は、 たとえば以下のようになります。
object(Ds\Set)#3 (2) {
[0]=>
int(2)
[1]=>
int(4)
}
例2 Ds\Set::filter() example without a callback function
<?php上の例の出力は、 たとえば以下のようになります。
object(Ds\Set)#2 (3) {
[0]=>
int(1)
[1]=>
string(1) "a"
[2]=>
bool(true)
}
|
|
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「Ds\Set::filter - Creates a new set using a callable to determine which values to include.」をGoogle検索
|