gpt4 book ai didi

PHP 错误处理 - 重定向

转载 作者:行者123 更新时间:2023-12-03 09:06:36 25 4
gpt4 key购买 nike

我被分配了一个大学项目的错误处理任务,但我无法让它工作。我需要使用 Try catch 捕获 SQL 错误,并将用户重定向到显示错误的新页面 error.php。我知道这不是处理错误的最佳方法,但这正是教授想要的。

这是我试图捕获错误的页面之一的示例:

<?php
$orderid = $_REQUEST['orderid'];
connectDB(); // database connections are defined in connect_to_DB.php

try{
$strSql2 = "SELECT `order_date`, `status_id`, `emp_id`,`cust_id` FROM `salesorder` WHERE `order_id`='" .$orderid. "'" ;

$result = @mysqli_query($db, $strSql2) // or die("SQL error: " . mysqli_error());

if($row = mysqli_fetch_array($result)){
$orderDate = $row["order_date"];
$orderStatus=$row["status_id"];
$empid = $row["emp_id"];
$custid=$row["cust_id"];

if(!$result){
throw new Exception(mysqli_error($db));
}

mysqli_free_result($result); // Always release the recordset memory resources
mysqli_close($db); // Always close the database connection

connectDB();
$sqlcount = "SELECT COUNT(order_id) AS numrows FROM orderitem WHERE order_id=".$_REQUEST['orderid'];
$resultcount = @mysqli_query($db,$sqlcount) // or die ("SQL error: ".mysqli_error());

if($rowcount= mysqli_fetch_array($resultcount)){
$orderamount = $rowcount['numrows'];
if(!$resultcount){
throw new Exception(mysqli_error($db));
}

mysqli_free_result($resultcount);
mysqli_close($db);
}
}
} catch (Exception $e){
// redirect to a php error page
header("Location: error.php?msg=" . $e->getMessage() . "&line=" . $e->getLine());
}

这是错误页面上的代码, error.php :
<? 
print "Error message: " . $_GET["msg"];
if(isset($_GET["line"])){
print " - line number: " . $_GET["line"];
}

抱歉不小心删除了这篇文章的结尾......现在第 66 行的 if 语句有错误 if($row = mysqli)我无法弄清楚。在我开始添加错误处理之前,一切正常。

在此先感谢您的帮助。

最佳答案

您缺少分号:

$result = @mysqli_query($db, $strSql2);

关于PHP 错误处理 - 重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34181771/

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