PHP » PYTHON |
login |
register |
about
|
PYTHON The Serializable interface
(0)
Python replacement for PHP's The Serializable interface
[
edit
]
PHP The Serializable interfacePHP original manual for The Serializable interface [ show | php.net ]The Serializable interfaceIntroductionInterface for customized serializing. Classes that implement this interface no longer support __sleep() and __wakeup(). The method serialize is called whenever an instance needs to be serialized. This does not invoke __destruct() or has any other side effect unless programmed inside the method. When the data is unserialized the class is known and the appropriate unserialize() method is called as a constructor instead of calling __construct(). If you need to execute the standard constructor you may do so in the method. Class synopsisSerializable
Serializable
{
/* Methods */
}Example #1 Basic usage
<?php The above example will output something similar to: string(15) "My private data" Table of Contents
|
more
Recently updated
more
Most requested
more
Last requests
|