HTTP request failed! HTTP/1.1 505 HTTP Version Not Supported error

前端 未结 6 2051
野趣味
野趣味 2020-12-07 01:27

I\'m trying to use file_get_contents() to get the response from a server and this error was encountered. Could someone tell me what is the reason and how to fix

6条回答
  •  难免孤独
    2020-12-07 01:42

    Some time we still get error with

    file_get_contents($api);
    

    in that case, try this:

    fopen($api,"r");
    

提交回复
热议问题