2015-06-25 129 views
0

我發佈了一個問題,有人告訴我用戶捲曲功能。我詳細地挖掘並弄糊塗。 我是否必須安裝curl,然後使用它才能使用curl函數傳遞值?捲曲安裝

post_to_url("https://www.msgapp.com/RESTPostForm.aspx", $data); 
$data= array(
       "Customer"=> "ch", 
       "cke"=>"1", 
       "ownerid"=> "6", 
       "overwrite"=>"0", 
       "TriggerID"=> "1950", 
       "PushExternal"=> "1", 
       "City"=> "London", 
       "FirstName"=>"Test", 
       "LastName"=>"User", 
       "Email"=> "[email protected]" 
        );  
function post_to_url($url, $data) { 
    $fields = ''; 
    foreach($data as $key => $value) { 
     $fields .= $key . '=' . $value . '&'; 
    } 
    rtrim($fields, '&'); 

    $post = curl_init(); 

    curl_setopt($post, CURLOPT_URL, $url); 
    curl_setopt($post, CURLOPT_POST, count($data)); 
    curl_setopt($post, CURLOPT_POSTFIELDS, $fields); 
    curl_setopt($post, CURLOPT_RETURNTRANSFER, 1); 

    $result = curl_exec($post); 

    curl_close($post); 
} 
+1

是,一般說當前的世界秩序要求軟件必須在使用之前安裝。類似的問題問如何做到這一點(如果這不適合你的地方所有的地方)http://stackoverflow.com/questions/1347146/how-to-enable-curl-in-php-xampp –

+0

感謝您的評論,我想我在我的問題中說過,有人建議我使用curl,而我對此很陌生。你可以用簡單易懂的方式解釋我 – Jibran

回答

1

搜索php.ini文件 ';延長= php_curl.dll'

和除去在前面的分號,則可以運行卷曲功能

+0

嗨Chandu, 它已經被刪除它可能是捲曲軟件 – Jibran