我是html的新手(实际上是sero体验),我想从api.json响应中提取一个字符串。我尝试过html中的php,但我认为我用得不好,因为我不能从中得到任何东西。
他们的API示例如下:
<?php
//Get the status and decode the JSON
$status = json_decode(file_get_contents('https://api.mcsrvstat.us/2/domain.tld'));
//Show the version
echo $status->version;
//Show a list of players
foreach ($status->players->list as $player) {
echo $player.'<br />';
}
?>
我如何尝试在html中实现它:
<!DOCTYPE html>
<html>
<head>
<?php
//Get the status and decode the JSON
$status = json_decode(file_get_contents('https://api.mcsrvstat.us/2/labrofamily.aternos.me'));
//Show the version
echo $status->version;
//Show a list of players
foreach ($status->players->list as $player) {
echo $player.'<br />';
}
?>
</body>
</html>
输出结果是:
version; //显示每个玩家的玩家列表($status-〉player-〉list as $player){ echo $player.' ';}?〉
1条答案
按热度按时间wljmcqd81#
您的代码看起来很好,只需将其保存为PHP文件(而不是html),然后使用例如xampp在您的Web服务器或PC上运行它。