- 论坛徽章:
- 0
|
在使用e-gold的自动支付功能编写自动支付的游戏程序时,在使用curl进行https连接post数据时出现问题,请教各位高手。
function _MakeSpend($from, $frompass, $to, $amount, $memo) {
$memo = str_replace(" ","%20",$memo);
$addr = "https://www.e-gold.com/acct/confirm.asp?AccountID=" . $from . "& assPhrase=" . $frompass . "& ayee_Account=" . $to . "&Amount=". $amount ."& AY_IN=1&WORTH_OF=Gold&Memo=". $memo . "&IGNORE_RATE_CHANGE=y& AYMENT_ID=1";
$ch = curl_init($addr);
curl_setopt($ch, CURLOPT_USERAGENT,"Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)" ;
curl_setopt($ch, CURLOPT_RETURNTRANSFER,0);
curl_setopt($ch, CURLOPT_HEADER, 0);
$fp = tmpfile();
curl_setopt ($ch, CURLOPT_FILE, $fp);
$result = curl_exec($ch);
curl_close($ch);
fseek($fp,0,SEEK_SET);
while(!feof($fp)) $result.=fread($fp,1024);
fclose($fp);
$result = strtolower($result);
$result = strstr($result,"your batch number for confirmation is " ;
$result = substr($result,51, ;
return $result;//回传batch number
} |
|