PHP支付宝老版md5,实例 | 支付宝支付(使用md5加密)

if($pay==1){

require_once("./include/ext/alipayconfig.class.php");

//支付类型

$payment_type = "1";

//必填,不能修改

//服务器异步通知页面路径

$notify_url = "http://www.***.com/index.php/alipaynotify.html";

//需http://格式的完整路径,不能加?id=123这类自定义参数

//页面跳转同步通知页面路径

$return_url = "http://www.***.com/index.php/member/alipayreturn.html";/

//需http://格式的完整路径,不能加?id=123这类自定义参数,不能写成http://localhost/

//商户订单号

$out_trade_no = $order_sn['order_sn'];

//商户网站订单系统中唯一订单号,必填

//订单名称

$subject = $order_sn['order_sn'];

//必填

//付款金额

$total_fee = $order_sn['goods_amount'];

//必填

//订单描述

$body = "下单";

//商品展示地址

$show_url = 'http://www.***.com/index.php/member/myclass.html';

//需以http://开头的完整路径,例如:http://www.商户网址.com/myorder.html

$alipaySubmit = new AlipaySubmit($alipay_config);

//防钓鱼时间戳

$anti_phishing_key = '';

//若要使用请调用类文件submit中的query_timestamp函数

//客户端的IP地址

$exter_invoke_ip = get_client_ip();

//构造要请求的参数数组,无需改动

$parameter = array(

"service" => "create_direct_pay_by_user",

"partner" => trim($alipay_config['partner']),

"seller_email" => trim($alipay_config['seller_email']),

"payment_type"=> $payment_type,

"notify_url"=> $notify_url,

"return_url"=> $return_url,

"out_trade_no"=> $out_trade_no,

"subject"=> $subject,

"total_fee"=> $total_fee,

"body"=> $body,

"show_url"=> $show_url,

"anti_phishing_key"=> $anti_phishing_key,

"exter_invoke_ip"=> $exter_invoke_ip,

"_input_charset"=> trim(strtolower($alipay_config['input_charset']))

);

//建立请求

$html_text = $alipaySubmit->buildRequestForm($parameter,"get", "confirm");

echo $html_text;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值