BossBey File Manager
PHP:
7.4.33
OS:
Linux
User:
root
Root
/
home
/
vssraipur
/
public_html
/
pdf
/
vendor
/
phpunit
/
phpunit-mock-objects
/
tests
/
_fixture
📤 Upload
📝 New File
📁 New Folder
Close
Editing: ClassThatImplementsSerializable.php
<?php class ClassThatImplementsSerializable implements Serializable { public function serialize() { return get_object_vars($this); } public function unserialize($serialized) { foreach (unserialize($serialized) as $key => $value) { $this->{$key} = $value; } } }
Save
Cancel