예
결과 집합의 필드의 길이를 돌려줍니다 :
<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$sql="SELECT * FROM Persons ORDER BY Lastname";
if ($result=mysqli_query($con,$sql))
{
$row=mysqli_fetch_row($result);
// Display field lengths
foreach (mysqli_fetch_lengths($result) as $i=>$val)
{
printf("Field %2d has length: %2d\n",$i+1,$val);
}
// Free result
set
mysqli_free_result($result);
}
mysqli_close($con);
?>
정의 및 사용
mysqli_fetch_lengths() 함수는 결과 세트의 필드 길이를 반환한다.
통사론
mysqli_fetch_lengths( result ) ;
매개 변수 | 기술 |
---|---|
result | 필요합니다. 에 의해 반환 된 결과 집합 식별자 지정 mysqli_query() , mysqli_store_result() 또는 mysqli_use_result() |
기술적 세부 사항
반환 값 : | 각 필드의 크기를 나타내는 경우에 배열 정수 리턴 (column) . 에러가 발생하면 FALSE |
---|---|
PHP 버전 : | 5+ |
<참고 PHP MySQLi