各种支付接口回调URL不能加参数的方法
时间:2021-07-01 10:21:17
帮助过:24人阅读
目前我接触到的支付接口 回调URL都不能加?a=1 这种形式的参数
看了下ecmall支付模块的回调URL
/**
* 获取结果响应地址
*
* @access public
* @param string $code
* @return string
*/
function get_respond_url($code)
{
return site_url() . '/index.php?app=respond&pay_id=' . $this->_id . '&store_id=' . $this->_store_id . '&code=' . $code;
}
他这里面怎么能用参数形式的?
回复讨论(解决方案)
help help
help help
这个要修改程序