PHP 中出现“尝试访问 Null 类型值的数组偏移”错误
当数据库返回 no 时,在数据库获取过程中会出现此错误匹配行或结果集已用完。当不存在匹配记录时,数据库函数返回 null 或空数组。
要解决此问题,请检查值的真实性或确认您要访问的键是否存在。考虑以下示例:
$monday_lectures = "SELECT * from lectures where lecture_time = '11am to 1pm' and lecture_day = 'firday'"; $result_11to1 = mysqli_query($con, $monday_lectures); $m11to1 = mysqli_fetch_array($result_11to1); if ($m11to1 && $m11to1["lecture_day"] == !'') { echo "<td>".$m11to1["lecture_name"]."</td>"; } else { echo "<td> no class</td>"; }
对于结果数组中的单个值,您可以指定默认值,以防结果为空:
$monday_lectures = "SELECT * from lectures where lecture_time = '11am to 1pm' and lecture_day = 'firday'"; $result_11to1 = mysqli_query($con, $monday_lectures); $m11to1 = mysqli_fetch_array($result_11to1); $lecture = $m11to1["lecture_day"] ?? null;
相同的方法适用于 PDO :
$monday_lectures = $pdo->prepare("SELECT * from lectures where lecture_time = '11am to 1pm' and lecture_day = 'firday'"); $monday_lectures->execute(); $m11to1 = $monday_lectures->fetch(); $lecture = $m11to1["lecture_day"] ?? null;
以上是如何处理 PHP 中的“尝试访问 Null 类型值的数组偏移量”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!