most used
serialize
description
Generates a storable representation of a value. This is useful for storing or passing PHP values around without losing their type and structure.
To make the serialized string into a PHP value again, use unserialize().
Erzeugt eine speicherbare Repräsentation eines Wertes. Diese Funktion dient der Speicherung oder Übergabe von PHP-Werten, ohne dass diese ihren Typ oder ihre Struktur verlieren.
Um eine serialisierte Zeichenkette wieder als PHP-Wert verfügbar zu machen, verwenden Sie unserialize().
Genera una representación almacenable de un valor. Esto es útil para el almacenamiento de valores en PHP sin perder su tipo y estructura.
Para recuperar el valor PHP a partir de la cadena seriada, utilice unserialize().
Linéarise une variable. C'est une technique pratique pour stocker ou passer des valeurs de PHP entre scripts, sans perdre ni leur structure, ni leur type.
Pour récupérer une variable linéarisée, et retrouver une variable, utilisez unserialize().
declaration of serialize
string serialize ( mixed $value )
test serialize online
share serialize
comments for serialize
On 07. Oct 2011 09:15 butzi wrote:
@bpelhos: It is supported (array(array()) work), but you need to format the content right.
On 03. Oct 2011 17:05 bpelhos wrote:
Array in array is not supported, it seems.
On 22. Mar 2011 09:45 butzi wrote:
@piotroff: What are you trying?
more comments for serialize
There are some more comments for serialize(). To see them all click here.