dtvjl64442 2018-04-16 15:07
浏览 77
已采纳

如何在php中使用curl从服务器获得响应

i am using CURL to get data from server. The way it works is like the following:

  • A device send data to routing application which is found on server.
  • To get the data from the routing application, clients must ask with GET method specifying server address, port and parameter.
  • once a client is connected, the application start sending data on every new packet arrived from the device to connected clients. see below picture

enter image description here

now lets see my code that i run to get the response:

<?php
   $curl = curl_init('http://192.168.1.4/online?user=dneb'); 
   curl_setopt($curl, CURLOPT_PORT, 1818); 
   curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE); 
   $result = curl_exec($curl);
   curl_close($curl);
   echo $result;

With this CURL request i can get the response data from routing application. But the routing application will never stop sending data to connected clients, so i will get the result only if i close the routing application, and it will echo every data as one. Now my question is how can i echo each data without closing the connection or the connection closed by the routing application? i.e When data received, display the data without any conditions. You can suggest any other options to forward this data to another server using TCP. Thanks!

  • 写回答

1条回答 默认 最新

  • dongsimang4036 2018-04-17 06:41
    关注

    a http connection that never close? don't think php's curl bindings are suitable for that. but you could use the socket api,

    $sock=socket_create(AF_INET,SOCK_STREAM,SOL_TCP);
    socket_set_block($sock);
    socket_connect($sock,"192.168.1.4",1818);
    $data=implode("
    ",array(
    'GET /online?user=dneb HTTP/1.0',
    'Host: 192.168.1.4',
    'User-Agent: PHP/'.PHP_VERSION,
    'Accept: */*'
    ))."
    
    ";
    socket_write($sock,$data);
    while(false!==($read_last=socket_read($sock,1))){
       // do whatever
        echo $read_last;
    }
    var_dump("socket_read returned false, probably means the connection was closed.",
    "socket_last_error: ",
    socket_last_error($sock),
    "socket_strerror: ",
    socket_strerror(socket_last_error($sock))
    );
    socket_close($sock);
    

    or maybe even http fopen,

    $fp=fopen("http://192.168.1.4:1818/online?user=dneb","rb");
    stream_set_blocking($fp,1);
    while(false!==($read_last=fread($fp,1))){
    // do whatever
        echo $read_last;
    }
    var_dump("fread returned false, probably means the connection was closed, last error: ",error_get_last());
    fclose($fp);
    

    (idk if fopen can use other ports than 80. also this won't work if you have allow_url_fopen disabled in php.ini)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?