php mysqli_fetch_lengths() 함수는 결과 세트의 필드 길이를 반환합니다. 구문은 mysqli_fetch_lengths(result)이며, 성공하면 함수는 오류가 있거나 다른 행이 없으면 false를 반환합니다.
php mysqli_fetch_lengths() 함수를 사용하는 방법은 무엇입니까?
mysqli_fetch_lengths() 함수는 결과 집합의 필드 길이를 반환합니다.
구문:
mysqli_fetch_lengths(result);
매개변수
결과: 필수입니다. mysqli_query(), mysqli_store_result() 또는 mysqli_use_result()에 의해 반환된 결과 집합 식별자를 지정합니다.
반환 값: 성공하면 함수는 숫자 배열을 반환합니다. 오류가 있거나 다른 행이 없으면 false를 반환합니다.
php mysqli_fetch_lengths() 함수 예제
결과 집합에 필드 길이를 반환합니다.
<?php // 假定数据库用户名:root,密码:123456,数据库:data $con=mysqli_connect("localhost","root","123456","data"); if (mysqli_connect_errno($con)) { echo "连接 MySQL 失败: " . mysqli_connect_error(); } $sql="SELECT name,url FROM websites ORDER BY alexa"; if ($result=mysqli_query($con,$sql)) { $row=mysqli_fetch_row($result); // 显示字段长度 foreach (mysqli_fetch_lengths($result) as $i=>$val) { printf("字段 %2d 长度为: %2d",$i+1,$val); echo "<br>"; } // 释放结果集 mysqli_free_result($result); } mysqli_close($con); ?>
위 내용은 PHP mysqli_fetch_lengths 함수를 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!