functions-online

serialize

en
de
fr

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().

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().

function call

string serialize( mixed $value )

test serialize online




comments for serialize

On 22. Jan 2010 01:29 Dennis wrote:

This function recognizes arrays unless you use single quotes (') to delimit strings instead of double quotes (").

On 01. Dec 2009 23:44 yodapt wrote:

This function doesn't recognize arrays.

+

Leave your comment