https://en.wikipedia.org/wiki/Serialization
In computer science , in the context of data storage, serialization is the process of translating data structures or object state into a format that can be stored (for example, in a file or memory buffer) or transmitted (for example, across a network connection link) and reconstructed later (possibly in a different computer environment).When the resulting series of bits is reread according to the serialization format, it can be used to create a semantically identical clone of the original object. For many complex objects, such as those that make extensive use of references, this process is not straightforward. Serialization of object-oriented objects does not include any of their associated methods with which they were previously linked.
This process of serializing an object is also called marshalling an object.The opposite operation, extracting a data structure from a series of bytes, is deserialization (which is also called unmarshalling).
https://docs.python.org/3/library/pickle.html
There is a .pkl file.
https://fileinfo.com/extension/pkl
In php, there is a serialize function.
How to run php code in windows.
http://editrocket.com/articles/php_windows.html
results of the program in php:
a:3:{i:0;s:5:"Lorem";i:1;s:5:"Ipsum";i:2;s:5:"Dolor";}
serialize in c++, geeksforgeeks.
http://www.geeksforgeeks.org/serialize-deserialize-binary-tree/
No comments:
Post a Comment