mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
[更新]修改支付宝支付 #19
This commit is contained in:
parent
7d02bdc83f
commit
ef2ab99cb4
@ -183,7 +183,7 @@ abstract class BasicAliPay
|
||||
*/
|
||||
protected function applyData($options)
|
||||
{
|
||||
$this->options['biz_content'] = json_encode($options, JSON_UNESCAPED_UNICODE);
|
||||
$this->options['biz_content'] = json_encode($this->params->merge($options), JSON_UNESCAPED_UNICODE);
|
||||
$this->options['sign'] = $this->getSign();
|
||||
}
|
||||
|
||||
@ -216,7 +216,7 @@ abstract class BasicAliPay
|
||||
protected function buildPayHtml()
|
||||
{
|
||||
$html = "<form id='alipaysubmit' name='alipaysubmit' action='{$this->gateway}' method='post'>";
|
||||
foreach ($this->params->get() as $key => $value) {
|
||||
foreach ($this->options->get() as $key => $value) {
|
||||
$value = str_replace("'", ''', $value);
|
||||
$html .= "<input type='hidden' name='{$key}' value='{$value}'/>";
|
||||
}
|
||||
|
@ -31,8 +31,7 @@ try {
|
||||
'total_amount' => '1', // 支付金额
|
||||
'subject' => '支付订单描述', // 支付订单描述
|
||||
]);
|
||||
echo '<pre>';
|
||||
var_export($result);
|
||||
echo $result;
|
||||
} catch (Exception $e) {
|
||||
echo $e->getMessage();
|
||||
}
|
||||
|
@ -32,8 +32,7 @@ try {
|
||||
'total_amount' => '1', // 支付金额
|
||||
'subject' => '支付订单描述', // 支付订单描述
|
||||
]);
|
||||
echo '<pre>';
|
||||
var_export($result);
|
||||
echo $result;
|
||||
} catch (Exception $e) {
|
||||
echo $e->getMessage();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user