mysql_field_type

定義和用法,語法,例子,

定義和用法

mysql_field_type() 函式返回結果集中指定欄位的類型。
如果成功,則返回指定欄位的類型,如果失敗,則返回 false。

語法

mysql_field_type(data,field_offset)
參數
描述
data
必需。要使用的數據指針。該數據指針是從 mysql_query() 返回的結果。
field_offset
必需。指示從哪個欄位開始返回。0 指示第一個欄位。

例子

<?php
$con = mysql_connect("localhost", "hello", "321");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
$db_selected = mysql_select_db("test_db",$con);
$sql = "SELECT * from Person";
$result = mysql_query($sql,$con);
$type = mysql_field_type($result, 0);
echo $type;
mysql_close($con);
?>
輸出:
string

相關詞條

熱門詞條

聯絡我們