SplObjectStorage::attach
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
SplObjectStorage::attach — オブジェクトをストレージに追加する
説明
オブジェクトをストレージに追加し、 オプションでそれを何らかのデータに関連づけます。
戻り値
値を返しません。
例
例1 SplObjectStorage::attach() の例
<?php
$o1 = new stdClass;
$o2 = new stdClass;
$s = new SplObjectStorage();
$s->attach($o1); // $s[$o1] = NULL; と同等
$s->attach($o2, "hello"); // $s[$o2] = "hello"; と同等
var_dump($s[$o1]);
var_dump($s[$o2]);
?>
上の例の出力は、 たとえば以下のようになります。
NULL string(5) "hello"
参考
- SplObjectStorage::detach() - オブジェクトをストレージから取り除く
- SplObjectStorage::offsetSet() - ストレージ内のオブジェクトにデータを関連づける
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google