所以我正在使用一个使用天气API的应用程序。在视频课程中我使用该课程中的人与我完全相同的代码,但他的作品和地雷并没有。我使用xampp来测试我的PHP代码。
<?php
$weather = "";
$error = "";
if ($_GET['city']) {
$urlContents =
file_get_contents("http://api.openweathermap.org/data/2.5/weather?q=".$_GET['city'].",uk&appid=");
$weatherArray = json_decode($urlContents, true);
print_r($weatherArray);
}
?>
错误消息是
注意:未定义的索引:第6行的C:\ xampp \ htdocs \ mobileapp \ weather.php中的城市
第6行是
if ($_GET['city']) {
另外,我很抱歉,如果这只是一个简单的答案,我只是php的新手。