CakeFest 2024: The Official CakePHP Conference

Serializable::unserialize

(PHP 5 >= 5.1.0, PHP 7, PHP 8)

Serializable::unserializeConstructs the object

Descrizione

public Serializable::unserialize(string $data): void

Called during unserialization of the object.

Nota:

This method acts as the constructor of the object. The __construct() method will not be called after this method.

Elenco dei parametri

data

The string representation of the object.

Valori restituiti

The return value from this method is ignored.

Vedere anche:

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top