| | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
Ds\Set::xor(PECL ds >= 1.0.0) Ds\Set::xor — Creates a new set using values in either the current instance or in another set, but not in both. 説明
public Ds\Set Ds\Set::xor
( Ds\Set
$set
)
Creates a new set containing values in the current instance as well as another
パラメータ
返り値
A new set containing values in the current instance as well as another 例例1 Ds\Set::xor() example
<?php上の例の出力は、 たとえば以下のようになります。
object(Ds\Set)#3 (4) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
int(4)
[3]=>
int(5)
}
|
|
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「Ds\Set::xor - Creates a new set using values in either the current instance or in another set, but not in both.」をGoogle検索
|