欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

PHP mysql_field_type() 函數(shù)

定義和用法

mysql_field_type() 函數(shù)返回結果集中指定字段的類型。

如果成功,則返回指定字段的類型,如果失敗,則返回 false。

語法

mysql_field_type(data,field_offset)
參數(shù) 描述
data 必需。要使用的數(shù)據(jù)指針。該數(shù)據(jù)指針是從 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