在mysqli_query
之前添加die()时它正在工作,但在mysqli_query
之后无法正常工作
当我使用mysql_query
$db_host="localhost";
$db_user="root";
$db_password="";
$db_name="jilphar";
$con=mysqli_connect($db_host,$db_user,$db_password,$db_name);
//die("here"); working here
$rslt = mysqli_query($con,"select width,height from image_size where imageName='Admin Logo'");
$row = mysqli_fetch_assoc($rslt);
$imageHeight = $row["height"];
$imageWidth = $row["width"];
die("here"); // here not working
连接工作正常
答案 0 :(得分:-1)
如果你删除了冷杉,我认为他会工作: - )
答案 1 :(得分:-1)
有很多事情可能出错。
如果您收到"空白"来自服务器的响应(Response code: 200
)。
这可能意味着,由于php.ini中的设置或运行时,脚本遇到错误并且错误被抑制。
如果没有收到回复,则表示查询花费的时间超出预期,并且您认为执行已停止。
我的意思是,查询可能需要花费大量时间才能执行,而您认为die
无效。