GoLang Serializable::unserialize

request it (209)
GoLang replacement for PHP's Serializable::unserialize [edit | history]



Do you know a GoLang replacement for PHP's Serializable::unserialize? Write it!

PHP Serializable::unserialize

PHP original manual for Serializable::unserialize [ show | php.net ]

Serializable::unserialize

(PHP 5 >= 5.1.0, PHP 7)

Serializable::unserializeConstructs the object

Description

abstract public void Serializable::unserialize ( string $serialized )

Called during unserialization of the object.

Note:

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

Parameters

serialized

The string representation of the object.

Return Values

The return value from this method is ignored.

See Also