processRequest-6ren">
gpt4 book ai didi

PHP 通知 : Undefined index although using try\catch

转载 作者:IT王子 更新时间:2023-10-29 00:07:19 26 4
gpt4 key购买 nike

这是我在 PHP 中的 try/catch block :

try
{
$api = new api($_GET["id"]);
echo $api -> processRequest();
} catch (Exception $e) {
$error = array("error" => $e->getMessage());
echo json_encode($error);
}

$_GET["id"] 中没有任何内容时,我仍然收到通知错误。如何避免出现此错误?

最佳答案

使用isset函数检查变量是否被设置:

if( isset($_GET['id'])){
$api = new api($_GET["id"]);
echo $api -> processRequest();
}

关于PHP 通知 : Undefined index although using try\catch,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18081677/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com