我一直在api上达到最大请求限制。我的页面每隔10秒刷新一次meta http-equiv="refresh" content="10"
。但我知道这不是更新此数据的正确方法。我如何将此请求限制为距离源(10)的每10秒
$url = "https://api.bitfinex.com/v1/pubticker/ETHusd";
$json = json_decode(file_get_contents($url), true);
$eth = $json["last_price"];
答案 0 :(得分:0)
您尚未解释或显示您的脚本使用$eth
执行的操作但这应该有效:
$url = "https://api.bitfinex.com/v1/pubticker/ETHusd";
while(TRUE) {
$json = json_decode(file_get_contents($url), true);
$eth = $json["last_price"];
sleep(10);
}