SplObjectStorage::serialize
(PHP 5 >= 5.2.2)
SplObjectStorage::serialize — Serializes the storage
Descrizione
public string SplObjectStorage::serialize
( void
)
Returns a string representation of the storage.
Elenco dei parametri
Questa funzione non contiene parametri.
Valori restituiti
A string representing the storage.
Esempi
Example #1 SplObjectStorage::serialize() example
<?php
$s = new SplObjectStorage;
$o = new StdClass;
$s[$o] = "data";
echo $s->serialize()."\n";
?>
Il precedente esempio visualizzerĂ qualcosa simile a:
x:i:1;O:8:"stdClass":0:{},s:4:"data";;m:a:0:{}
Vedere anche:
- SplObjectStorage::unserialize() - Unserializes a storage from its string representation
There are no user contributed notes for this page.
