예
모든 필드에 대한 필드 정보를 가져 오기, 다음으로 현재 필드 얻을 mysqli_field_tell() 하고 각 컬럼의 이름, 표를 인쇄하고 최대 길이 :
<?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 Lastname,Age FROM Persons ORDER BY Lastname";
if ($result=mysqli_query($con,$sql))
{
// Get
field info for all fields
while
($fieldinfo=mysqli_fetch_field($result))
{
// Get field cursor position
$currentfield=mysqli_field_tell($result);
printf("Column %d:\n", $currentfield);
printf("Name:
%s\n", $fieldinfo->name);
printf("Table: %s\n",
$fieldinfo->table);
}
// Free result
set
mysqli_free_result($result);
}
mysqli_close($con);
?>
정의 및 사용
mysqli_field_tell() 함수는 필드 커서의 위치를 반환합니다.
통사론
mysqli_field_tell( result ) ;
매개 변수 | 기술 |
---|---|
result | 필요합니다. 에 의해 반환 된 결과 집합 식별자 지정 mysqli_query() , mysqli_store_result() 또는 mysqli_use_result() |
기술적 세부 사항
반환 값 : | 필드 커서의 현재의 오프셋 (offset)를 돌려줍니다 |
---|---|
PHP 버전 : | 5+ |
<참고 PHP MySQLi