为什么 else 语句在不应该运行时运行,为什么 die 函数不运行(顺便说一句,我是编码新手)

问题描述 投票:0回答:0

main.php

<?php
require_once('db_connect.php');
require_once('connect.php');

$connect=db_connect();
if(!$connect){
    die("connection failed". mysqli_connect_error());
}else{
    echo "connected successfully";
}
?>

enter image description here

我尝试使用 php 连接到数据库,但我想尝试一些没有成功连接的东西,看看会发生什么。

php if-statement mysqli
© www.soinside.com 2019 - 2024. All rights reserved.