Home  >  Article  >  Backend Development  >  各种支付接口 回调URL不能加参数的方法

各种支付接口 回调URL不能加参数的方法

WBOY
WBOYOriginal
2016-06-23 13:25:291198browse

目前我接触到的支付接口  回调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 

这个要修改程序

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn