중첩 배열을 사용하여 PHP에서 여러 MySQL 행 검색
여러 MySQL 행을 검색하고 PHP에서 액세스하려면 반복 호출을 활용할 수 있습니다. mysql_fetch_assoc() 함수에. PHP 문서에 지정된 대로:
mysql_fetch_assoc()는 결과 집합에서 다음 행을 연관 배열로 검색합니다. 배열 키는 필드 이름이고 배열 값은 해당 필드 값입니다.
여러 행의 데이터에 액세스하려면 중첩 배열을 사용할 수 있습니다. 예는 다음과 같습니다.
<code class="php"><?php // Establish database connection and execute query to select rows with number1 = 1 // Repeatedly call mysql_fetch_assoc() to retrieve each row as an associative array while ($row = mysql_fetch_assoc($result)) { // Store each row in a nested array $multidimensionalArray[] = $row; } // Access data from the nested array using the following syntax: $firstRowData = $multidimensionalArray[0]; $secondRowData = $multidimensionalArray[1]; echo $firstRowData['number2']; // Prints the number2 value for the first row echo $secondRowData['number2']; // Prints the number2 value for the second row ?></code>
이 접근 방식을 사용하면 중첩 배열 구조를 사용하여 행을 반복하고 여러 행에서도 필요한 특정 데이터에 액세스할 수 있습니다.
위 내용은 중첩 배열을 사용하여 PHP에서 여러 MySQL 행을 검색하고 액세스하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!