src/F2fpay/Base/Aop/AopClient.php 1 location
|
@@ 436-438 (lines=3) @@
|
433 |
|
|
434 |
|
//系统参数放入GET请求串 |
435 |
|
$requestUrl = $this->gatewayUrl . "?"; |
436 |
|
foreach ($sysParams as $sysParamKey => $sysParamValue) { |
437 |
|
$requestUrl .= "$sysParamKey=" . urlencode($this->characet($sysParamValue, $this->postCharset)) . "&"; |
438 |
|
} |
439 |
|
$requestUrl = substr($requestUrl, 0, -1); |
440 |
|
|
441 |
|
|
src/F2fpay/Kernel/AopClient.php 1 location
|
@@ 93-95 (lines=3) @@
|
90 |
|
|
91 |
|
//系统参数放入GET请求串 |
92 |
|
$requestUrl = $this->gatewayUrl . "?"; |
93 |
|
foreach ($sysParams as $sysParamKey => $sysParamValue) { |
94 |
|
$requestUrl .= "$sysParamKey=" . urlencode($this->characet($sysParamValue, $this->postCharset)) . "&"; |
95 |
|
} |
96 |
|
$requestUrl = substr($requestUrl, 0, -1); |
97 |
|
|
98 |
|
return [$requestUrl, $apiParams]; |