最近我一直對PHP很好奇,並且正在開發一個測試主題。我想從網絡遊戲中獲得公民的人數,並按軍銜排序。使用php訂購json api
這裏是API的鏈接:https://www.erevollution.com/en/api/citizenship/1
這裏是我到目前爲止的代碼。
<form action="index.php" method="post">
<input type="text" name="id"><br>
<input type="submit">
</form>
<?php
$okey= $_POST["id"];;
$jsonurl="https://www.erevollution.com/en/api/citizenship/".$okey;
$json = file_get_contents($jsonurl,0,null,null);
$json_output = json_decode($json);
echo "Players of albania are: <br>";
foreach ($json_output as $trend)
{
$id = $trend->ID;
echo " Name : {$trend->Name}\n";
echo '<br>';
}
你已經給出了URL和代碼是什麼問題? – StackB00m
@ StackB00m我想訂購公民軍銜 –
@ StackB00m你可以給我一個代碼片段嗎?我有點兒小菜! –