home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / php / PEAR / HTML / AJAX / Serializer / Null.php < prev    next >
Encoding:
PHP Script  |  2008-07-02  |  597 b   |  29 lines

  1. <?php
  2. // $Id$
  3. /**
  4.  * Null Serializer
  5.  *
  6.  * @category   HTML
  7.  * @package    AJAX
  8.  * @author     Joshua Eichorn <josh@bluga.net>
  9.  * @copyright  2005 Joshua Eichorn
  10.  * @license    http://www.opensource.org/licenses/lgpl-license.php  LGPL
  11.  * @version    Release: 0.5.6
  12.  * @link       http://pear.php.net/package/PackageName
  13.  */
  14. class HTML_AJAX_Serializer_Null 
  15. {
  16.     
  17.     function serialize($input) 
  18.     {
  19.         return $input;
  20.     }
  21.  
  22.     function unserialize($input) 
  23.     {
  24.         return $input;
  25.     }
  26. }
  27. /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
  28. ?>
  29.