我想调用API中的数据存储在我的变量中。 我的代码:
<?php $url = "https://api.steampowered.com/ICSGOServers_730/GetGameMapsPlaytime/v1/?format=json&key=E5F331493A95AA54FD1230551754AB19&mapgroup=operation&gamemode=casual&interval=month";
$mapinfo = json_decode(file_get_contents($url), true);
$b = $mapinfo['result'];
?>
<!DOCTYPE html>
<html>
<head>
<title>Operation Maps Stats</title>
</head>
<body>
<?php echo "$b"; ?>
</body>
</html>
错误: 注意:第14行的D:\ xampp \ htdocs \ operation \ index.php中的数组到字符串转换 阵列
答案 0 :(得分:2)
在第14行写print_r($b);
而不是echo "$b"
,因为结果是数组。
答案 1 :(得分:0)
第14行:<?php echo "$b"; ?>
您必须更改为<?php echo $b; ?>
因为您正在将$b
视为字符串