gpt4 book ai didi

php - 我该如何处理错误消息

转载 作者:行者123 更新时间:2023-12-03 08:13:38 25 4
gpt4 key购买 nike

连接到数据库时,我试图用php捕获错误

我有类似的东西

 try{
//connect to DB
}catch(exception $e){
echo $e
}

//other php codes...


//My html elements...
<div>....

我的问题是,如果我们在连接到数据库时出错并直接显示我的html元素,我想跳过 //other phpo codes。有可能做到吗?非常感谢。

最佳答案

只需在您的try/catch中添加该代码即可。引发异常后,将执行移交给控制结构的catch部分,并且永远不会到达该部分代码:

 try{
//connect to DB

// If an exception is throw above we never get here

//other php codes...

}catch(exception $e){
echo $e
}

//My html elements...
<div>....

关于php - 我该如何处理错误消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25169289/

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