string) */ public function __sleep() { $this->backupTime = $this->format( 'r' ); return array( 'backupTime' ); } /** * Restores the backeuped time. * * This method is automatically called after deserializing the object and * restores the backed up time information. * * @return void */ public function __wakeup() { $this->__construct( $this->backupTime ); } } ?>