Unable to make php curl request with port number

后端 未结 6 866
一生所求
一生所求 2020-12-06 17:23

I am unable to make a php curl request with port number , without port number i am getting response properly.

Through terminal when i do curl http://www.sample.com

6条回答
  •  悲&欢浪女
    2020-12-06 17:36

    Try to set the port like this:

    curl_setopt($ch, CURLOPT_PORT, $_SERVER['SERVER_PORT']);
    

    or:

    curl_setopt($ch, CURLOPT_PORT, 8088);
    

提交回复
热议问题