小程序
小游戏
企业微信
微信支付
扫描小程序码分享
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
是你打印截断了,而不是返回不完整
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
public function profit_sharing($transaction_id,$out_trade_no,$account,$total_fee){ $resp = $this->instance ->chain('v3/profitsharing/orders') ->post(['json' => [ 'sub_mchid' => $this->config['sp_mchid'],//子商户号 'appid' => $this->config['wx_small_appid'],//应用ID 'sub_appid' => $this->config['wx_sub_appid'],//子商户应用ID 'transaction_id' => $transaction_id, 'out_order_no' => $out_trade_no, 'unfreeze_unsplit' => true, 'receivers' => [ 'type'=>'MERCHANT_ID',//分账接收方类型, 'account'=>$account,//分账接收方账号 'amount'=>$total_fee, 'description'=>'分账商户' ] ]]); return $resp->getBody(); }
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
是你打印截断了,而不是返回不完整
public function profit_sharing($transaction_id,$out_trade_no,$account,$total_fee){ $resp = $this->instance ->chain('v3/profitsharing/orders') ->post(['json' => [ 'sub_mchid' => $this->config['sp_mchid'],//子商户号 'appid' => $this->config['wx_small_appid'],//应用ID 'sub_appid' => $this->config['wx_sub_appid'],//子商户应用ID 'transaction_id' => $transaction_id, 'out_order_no' => $out_trade_no, 'unfreeze_unsplit' => true, 'receivers' => [ 'type'=>'MERCHANT_ID',//分账接收方类型, 'account'=>$account,//分账接收方账号 'amount'=>$total_fee, 'description'=>'分账商户' ] ]]); return $resp->getBody(); }