update : 2015.11.03
php.shukuma.com

검색:
 
 
결과로부터 특정 필드의 데이터 형(type) 정보를 반환

mysql_field_type

(PHP 4, PHP 5)

mysql_field_type결과로부터 특정 필드의 데이터 형(type) 정보를 반환

설명

string mysql_field_type ( resource $result , int $field_offset )

mysql_field_type()mysql_field_name()와 사용자에게 돌려주는 값의 형태가 비슷하다.

인수

result

mysql_query() 호출을 통한 결과 resource.

field_offset

The numerical field offset. The field_offset starts at 0. If field_offset does not exist, an error of level E_WARNING is also issued.

반환값

반환되는 필드 형태는 "int", "real", "string", "blob", 그리고 » MySQL 문서에 설명되어 있는 데이터형 중 하나이다.

예제

Example #1 mysql_field_type() 예제

<?php
mysql_connect
("localhost""mysql_username""mysql_password");
mysql_select_db("mysql");
$result mysql_query("SELECT * FROM func");
$fields mysql_num_fields($result);
$rows   mysql_num_rows($result);
$table  mysql_field_table($result0);
echo 
"Your '" $table "' table has " $fields " fields and " $rows " record(s)\n";
echo 
"The table has the following fields:\n";
for (
$i=0$i $fields$i++) {
    
$type  mysql_field_type($result$i);
    
$name  mysql_field_name($result$i);
    
$len   mysql_field_len($result$i);
    
$flags mysql_field_flags($result$i);
    echo 
$type " " $name " " $len " " $flags "\n";
}
mysql_free_result($result);
mysql_close();
?>

위 예제의 출력 예시:

Your 'func' table has 4 fields and 1 record(s)
The table has the following fields:
string name 64 not_null primary_key binary
int ret 1 not_null
string dl 128 not_null
string type 9 not_null enum

주의

Note:

하위 호환을 위하여, 다음의 권장하지 않는 별칭을 사용할 수 있습니다: mysql_fieldtype()

참고