mysql_field_type

(PHP 3, PHP 4 )

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

설명

string mysql_field_type ( int result, int field_offset)

mysql_field_type()mysql_field_name() 함수와 사용자에게 돌려주는 값의 형태에서는 비슷하다. 그러나, 필드타입은 "int", "real", "string", "blob" 등과 같은 단어로 반환한다는 것이 다르다. 필드타입의 더 자세한 종류를 보려면 MySQL 문서를 보면 된다.

예 1. mysql field types

<?php 

mysql_connect ("localhost:3306");
mysql_select_db ("wisconsin");
$result = mysql_query ("SELECT * FROM onek");
$fields = mysql_num_fields ($result);
$rows   = mysql_num_rows ($result);
$i = 0;
$table = mysql_field_table ($result, $i);
echo "Your '".$table."' table has ".$fields." fields and ".$rows." records <BR>";
echo "The table has the following fields <BR>"; 
while ($i < $fields) {
    $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."<BR>";
    $i++;
}
mysql_close();

?>

하위 호환성이 있는 mysql_fieldtype()도 사용 가능하다.