各种支付接口 回调URL不能加参数的方法
程序员文章站
2022-05-01 11:45:06
...
目前我接触到的支付接口 回调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;
}
他这里面怎么能用参数形式的?
看了下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
这个要修改程序
推荐阅读