Serialize.php 258 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace Swoole;
  3. class Serialize
  4. {
  5. /**
  6. * @return mixed
  7. */
  8. public static function pack($data, $flag = null)
  9. {
  10. }
  11. /**
  12. * @return mixed
  13. */
  14. public static function unpack($string, $flag = null)
  15. {
  16. }
  17. }