6 lines
73 B
PHP
6 lines
73 B
PHP
<?php
|
|
$string = serialize($user);
|
|
|
|
$user = unserialize($string);
|
|
?>
|