Basic Components - Record - Serializing.php 73 Bytes
Newer Older
doctrine's avatar
doctrine committed
1 2 3 4 5
<?php
$string = serialize($user);

$user = unserialize($string);
?>