Skip to content
This repository has been archived by the owner on Jul 10, 2023. It is now read-only.

Implement object serialization #31

Open
andrewdalpino opened this issue May 31, 2021 · 0 comments
Open

Implement object serialization #31

andrewdalpino opened this issue May 31, 2021 · 0 comments

Comments

@andrewdalpino
Copy link

A common use case for objects in PHP is serialization and deserialization so their properties can be stored and then reloaded into memory with their class definition. This ticket is to implement serialization in the C Array extension such that when passed as an argument to serialize() or embedded deeper in the object-property tree stemming from the root object that is passed to serialize() the C Array buffer will be saved along with the other properties.

Example

$data = serialize($carray);

$carray = unserialize($data);
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant