(PHP 3, PHP 4 )
mysql_field_type --
結果において指定したフィールドの型を得る
説明
string
mysql_field_type ( string result, int field_offset)
mysql_field_type()は、
mysql_field_name()関数に似ています。
引数は同じですが、この関数ではフィールドの型が返されます。
この型は、"int"、"real"、"string"、"blob"、
MySQLドキュメントで詳細が規定された他の型のどれかになります。
例 1mysqlフィールドの型を得る <?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()も使用可能です。