开发者

PHP fsockopen to curl conversion

开发者 https://www.devze.com 2023-01-02 12:43 出处:网络
i have this piece of code: <?php $host = \"registration.mypengo.com\"; $request = \"/webregistration.aspx?taskaction=serviceresponse&partner=157&su开发者_运维百科bid=\" . $subid . \"&m

i have this piece of code:

<?php $host = "registration.mypengo.com";
$request = "/webregistration.aspx?taskaction=serviceresponse&partner=157&su开发者_运维百科bid=" . $subid . "&msisdn=" . $msisdn . "&type=TEXT&data=" . $data . "&serviceid=" . $service_id;
$fp = fsockopen($host, 80, $errno, $errstr, 3.0);

if($fp)
{
  fwrite($fp,
    "GET $request HTTP/1.0\r\n" .
    "Host: $host\r\n".
    "Connection: close\r\n".
    "Content-Length: " . strlen($request) . "\r\n" .
    "\r\n" .
  $request);

  stream_set_timeout($fp, 2, 0);
  $response = "";

  while(!feof($fp))
    $response .= fread($fp, 1024);

  fclose($fp);?>

i want to try it out using curl but i am kinda new to curl so can anyone share some ideas?


This is the equivalent using cURL,

    $ch = curl_init(); 
    curl_setopt($ch, CURLOPT_URL, "http://" . $host . $request); 
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
    curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Connection: close'));
    curl_setopt($ch, CURLOPT_TIMEOUT, 2); 
    $response = curl_exec($ch); 
    curl_close($ch);      

BTW, it's not safe to make query string like that. You should use http_build_query() to build it so it's properly encoded.


I suggest you to use this script. This is totally awesome: http://www.bin-co.com/php/scripts/load/

0

精彩评论

暂无评论...
验证码 换一张
取 消