简体   繁体   English

注意:第21行的C:\\ xampp \\ htdocs \\ isan \\ hasildata.php中的未定义偏移量:0

[英]Notice: Undefined offset: 0 in C:\xampp\htdocs\isan\hasildata.php on line 21

Hi I receive the following error in my homework and I do not know what is the problem hasildata.php on line 21 : 嗨,我在作业中收到以下错误,我不知道第21行的hasildata.php是什么问题:

$dataJson = file_get_contents("https://maps.googleapis.com/maps/api/distancematrix/json?units=metric&origins=".$from."&destinations=".$to."&key=%20AIzaSyCWpwVwu1hO6TJW1H8x_zlhrLfbSbQ2r3o");

$data = json_decode($dataJson,true);
$nilaiJarak = $data['rows'][0]['elements'][0]['distance']['text'];
$time=$data['rows'][0]['elements'][0]['duration']['text'];

Screenshot 截图

You must check whether your request is OK or not 您必须检查您的请求是否正常

$dataJson = file_get_contents("https://maps.googleapis.com/maps/api/distancematrix/json?units=metric&origins=".$from."&destinations=".$to."&key=%20AIzaSyCWpwVwu1hO6TJW1H8x_zlhrLfbSbQ2r3o");
$data = json_decode($dataJson,true);
if ($data['status'] !== "OK") {
    // Error
    echo $data['error_message'];

    // Do something
} else {
    $nilaiJarak = $data['rows'][0]['elements'][0]['distance']['text'];
    $time=$data['rows'][0]['elements'][0]['duration']['text'];
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 注意:未定义偏移量:1 in C:\\xampp\\htdocs\\index.php 第 5 行 - Notice: Undefined offset: 1 in C:\xampp\htdocs\index.php on line 5 注意:未定义的偏移量:第19行的C:\\ xampp \\ htdocs \\ h_php \\ addTimes.php中的1 - Notice: Undefined offset: 1 in C:\xampp\htdocs\h_php\addTimes.php on line 19 数组(['1'] => 1)1注意:未定义的偏移量:第152行的C:\\ xampp \\ htdocs \\ HR \\ functions \\ functions_applicants.php中的1 - Array ( ['1'] => 1 ) 1 Notice: Undefined offset: 1 in C:\xampp\htdocs\HR\functions\functions_applicants.php on line 152 2 注意:Undefined offset: 2 in C:\\xampp\\htdocs\\test.php on line 20 如何解决 - Notice: Undefined offset: 2 in C:\xampp\htdocs\test.php on line 20 how to solve PHP:注意:未定义的索引:第9行的C:\\ xampp \\ htdocs \\ vdab \\ cookies.php中的NameFilledIn - PHP : Notice: Undefined index: NameFilledIn in C:\xampp\htdocs\vdab\cookies.php on line 9 注意:未定义的索引:在线的C:\\ xampp \\ htdocs \\ cars \\ index1.php中的elegido - Notice: Undefined index: elegido in C:\xampp\htdocs\cars\index1.php on line 注意:第29行的C:\\ xampp \\ htdocs \\ joyce \\ projectcal.php中的未定义变量:value_1 - Notice: Undefined variable: value_1 in C:\xampp\htdocs\joyce\projectcal.php on line 29 注意:未定义的索引:第15行的C:\\ xampp \\ htdocs \\ Sites \\ ooplr \\ classes \\ Validate.php中的密码? - Notice: Undefined index: password in C:\xampp\htdocs\Sites\ooplr\classes\Validate.php on line 15? 注意:第21行的C:\\ xampp \\ htdocs \\ Space \\ Find \\ index.php中遇到的格式不正确的数值 - Notice: A non well formed numeric value encountered in C:\xampp\htdocs\Space\Find\index.php on line 21 php注意:未定义的索引:第3行的C:\\ xampp \\ htdocs \\ includes \\ middle.php中的id - php Notice: Undefined index: id in C:\xampp\htdocs\includes\middle.php on line 3
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM