wuchen.php 238 B

12345678
  1. <?php
  2. $content = $_SERVER['post_content'];
  3. $input = json_decode($content,true);
  4. refill\util::push_notify('wuchen',$input);
  5. $data['code'] = 1000;
  6. $data['message'] = '订单处理成功';
  7. $content = json_encode($data);
  8. echo $content;