PHP에서 "Trying to Access Array Offset on Value of Type 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!