这里只是一个初学者。我试图通过我的网站上的硬币api获取网站/统计数据。
从这个帖子https://stackoverflow.com/a/47401074/9900539我发现代码片段似乎就是我要找的。 p>
但我在哪里放什么?
JSON请求:
<?php
$url = 'the api url';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
"Content-Type: application/x-www-form-urlencoded"
));
$data = curl_exec($ch);
curl_close($ch);
$result = json_decode($data, true);
?>
回发给最终用户:
<span id="test" style="color:white"><?php
if (isset($data))
{
echo $result['balance'];
}
else
{
echo 'not found';
}
?></span>