$con = mysql_connect("localhost","mysql_user","mysql_pwd");
if (!$con) {
die('Could not connect: ' . mysql_error()); //等同 exit('Could...');
}
站內搜尋
Saturday, July 24, 2021
[PHP] exit()的用法 以及 與die()的差異
exit、exit()與exit(0)都可以讓程序結束,如果希望程序結束時印出字串,可以使用exit('Error'),至於die()就是exit()一模一樣的別名函式,常於連線資料庫時使用。
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment