SplObjectStorage::serialize
(PHP 5 >= 5.2.2, PHP 7, PHP 8)
SplObjectStorage::serialize — ストレージをシリアライズする
パラメータ
この関数にはパラメータはありません。
戻り値
ストレージの文字列表現を返します。
例
例1 SplObjectStorage::serialize() の例
<?php
$s = new SplObjectStorage;
$o = new stdClass;
$s[$o] = "data";
echo $s->serialize()."\n";
?>
上の例の出力は、 たとえば以下のようになります。
x:i:1;O:8:"stdClass":0:{},s:4:"data";;m:a:0:{}
+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