~~~
<?php
header("Content-Type:text/html; charset=utf-8");
//检测是否支持cURL
if(!extension_loaded('curl'))
{
trigger_error('对不起,请开启curl功能模块!', E_USER_ERROR);
}
$ip=$_SERVER["REMOTE_ADDR"];
//$ip="127.0.0.1";
$str="body=测试支付&mch_create_ip=".$ip."&mch_id=100004383076&nonce_str=1409196838¬ify_url=http://www.baidu.com&out_trade_no=141903606228&service=pay.weixin.jspay&total_fee=1&key=0180437CED486F857078875D3039CC59";
$str1= strtoupper(md5($str));
//echo $str1;exit();
//构造xml
$xmldata = <<<xml
<?xml version='1.0' encoding='UTF-8'?>
<xml>
<body><![CDATA[测试支付]]></body>
<mch_create_ip><![CDATA[$ip]]></mch_create_ip>
<mch_id><![CDATA[100004383076]]></mch_id>
<nonce_str><![CDATA[1409196838]]></nonce_str>
<notify_url><![CDATA[http://www.baidu.com]]></notify_url>
<out_trade_no><![CDATA[141903606228]]></out_trade_no>
<service><![CDATA[pay.weixin.jspay]]></service>
<sign><![CDATA[$str1]]></sign>
<total_fee><![CDATA[1]]></total_fee>
</xml>
xml;
//初始化curl会话
$ch = curl_init();
//设置url
curl_setopt($ch, CURLOPT_URL, 'http://mapi.bosc.uline.cc/unionpay/staticquery');
//设置发送方式
curl_setopt($ch, CURLOPT_POST, true);
//设置发送的数据
curl_setopt($ch, CURLOPT_POSTFIELDS, $xmldata);
//抓取URL并把它传递给浏览器
curl_exec($ch);
//关闭cURL资源,并且释放系统资源
curl_close($ch);
?>
~~~