1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/manual/codes/Working with objects - Component overview - Record - Serializing.php
2007-02-23 20:57:38 +00:00

6 lines
73 B
PHP

<?php
$string = serialize($user);
$user = unserialize($string);
?>