$this->app['config']['app_id'], 'out_batch_no' => $order['out_batch_no'], 'batch_name' => $order['batch_name'], 'batch_remark' => $order['batch_remark'], 'total_amount' => $order['total_amount'], 'total_num' => $order['total_num'], 'transfer_detail_list' => $order['transfer_detail_list'], ]; $content = json_encode($params, JSON_UNESCAPED_UNICODE); $res = $this->request('/v3/transfer/batches', 'POST', ['sign_body' => $content]); if (isset($res['code'])) { throw new ValidateException('微信接口报错:' . $res['message']); } return $res; } }