这是我的代码:
$url = 'https://cryptoland.net/api/v1/live-price?q=selected'
$json = file_get_contents($url);
$obj = json_decode($json);
var_dump($obj) ;
当我在浏览器中手动使用URL时,效果很好!
但是该网站使用的云状耀斑ddos保护file_get_contents无法正常工作并显示
failed to open stream: HTTP request failed! HTTP/1.1 503 Service Temporarily Unavailable
我该如何解决?
请帮助我