Php 在CURL中打开querystring文件时收到错误的请求

Php 在CURL中打开querystring文件时收到错误的请求,php,curl,fopen,file-get-contents,Php,Curl,Fopen,File Get Contents,我还使用了file\u get\u conent和fopen,但都返回了错误的请求错误, 请帮帮我 有关更多详细信息,请参阅下面的链接 如果您发布的代码是准确的,那么这一行就是问题所在: $URL:https://demo.firstach.com/https/TransRequest.asp?Login_ID=someit&Transaction_Key=somekey&Customer_ID=23&Customer_Name=Muhammad Naeem&Cu

我还使用了file\u get\u conent和fopen,但都返回了错误的请求错误, 请帮帮我

有关更多详细信息,请参阅下面的链接


如果您发布的代码是准确的,那么这一行就是问题所在:

$URL:https://demo.firstach.com/https/TransRequest.asp?Login_ID=someit&Transaction_Key=somekey&Customer_ID=23&Customer_Name=Muhammad Naeem&Customer_Address=Address&Customer_City=city&Customer_State=HI&Customer_Zip=54000&Customer_Phone=--&Customer_Bank_ID=111111118&Customer_Bank_Account=12345678901234567890&Account_Type=Business Checking&Transaction_Type=Debit&Frequency=Once&Number_of_Payments=1&Effective_Date=12%2F05%2F2010&Amount_per_Transaction=10.00&Check_No=&Memo=&SECCType=WEB 

$ch = curl_init(); 
    curl_setopt($ch, CURLOPT_URL,$url); // set url to post to 
    curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); // return into a variable 
    curl_setopt($ch, CURLOPT_TIMEOUT, 0); // times out after Ns 
    curl_setopt($ch, CURLOPT_FAILONERROR, 0); 
    curl_setopt($ch, CURLOPT_VERBOSE, 1); 
    curl_setopt($ch, CURLOPT_HEADER, 1); 
    curl_setopt($ch, CURLOPT_COOKIEFILE, 1); 
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); 
    $result = curl_exec($ch); // run the whole process 

    print_r($result); 

    curl_close($ch); 
在这里,您似乎试图定义
$URL
,但当您将它与cURL一起使用时,您引用的是
$URL
。varibales区分大小写。其次,您有
$URL:
,如果您想使用
$URL=
,它是无效的

另外,我会对参数进行如下编码:

$URL:https://demo.firstach.com/https/TransRequest.asp?Login_ID=someit&Transaction_Key=somekey&Customer_ID=23&Customer_Name=Muhammad Naeem&Customer_Address=Address&Customer_City=city&Customer_State=HI&Customer_Zip=54000&Customer_Phone=--&Customer_Bank_ID=111111118&Customer_Bank_Account=12345678901234567890&Account_Type=Business Checking&Transaction_Type=Debit&Frequency=Once&Number_of_Payments=1&Effective_Date=12%2F05%2F2010&Amount_per_Transaction=10.00&Check_No=&Memo=&SECCType=WEB
这样
http\u build\u query
就可以处理所有的url编码,并且您可以事先使用数组,这样就可以很容易地看到发生了什么,并添加/删除/更改参数。或者,如果是post请求,您可以使用:

curl_setopt($ch,CURLOPT_POSTFIELDS,$params)

它将处理所有参数编码,以及不直接从数组中获取的内容,这样就不需要手动将它们附加到
$url

$baseurl = 'https://demo.firstach.com/https/TransRequest.asp';
$params = array(
 'Login_ID' =>  'someit',
 'Transaction_Key' => 'somekey',
 'Customer_ID'= => 23,
 'Customer_Name' => 'Muhammad Naeem',
 'Customer_Address' => 'Address',
 'Customer_City' => 'city',
 'Customer_State' => 'HI',
 'Customer_Zip' => '54000',
 'Customer_Phone' => '--',
 'Customer_Bank_ID' => '111111118'
 'Customer_Bank_Account' => '12345678901234567890'
 'Account_Type' => 'Business Checking'
 'Transaction_Type' => 'Debit'
 'Frequency' => 'Once'
 'Number_of_Payments' => 1,
 'Effective_Date'=> '12/05/2010',
 'Amount_per_Transaction' => '10.00',
 'Check_No'=> '',
 'Memo'=> '',
 'SECCType' => 'WEB'
);

$url = sprintf('%s?%s', $baseurl, http_build_query($params));