截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Parser.php 722B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace app\common\websocket;
  3. class Parser
  4. {
  5. /**
  6. * @notes 数组数据转json
  7. * @param string $event
  8. * @param $data
  9. * @return false|string
  10. * @author 段誉
  11. * @date 2021/12/29 18:27
  12. */
  13. public function encode(string $event, $data)
  14. {
  15. return json_encode(['event' => $event, 'data' => $data]);
  16. }
  17. /**
  18. * @notes json转数组数据
  19. * @param $data
  20. * @return array
  21. * @author 段誉
  22. * @date 2021/12/29 18:28
  23. */
  24. public function decode($data)
  25. {
  26. $result = json_decode($data, true);
  27. return [
  28. 'event' => $result['event'] ?? null,
  29. 'data' => $result['data'] ?? null,
  30. ];
  31. }
  32. }