您现在的位置是:首页 > PHP函数

李清波 2015-09-30 PHP函数 1591 复制当前网址

mysql_field_type



PHP 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


文章来源:https://liqingbo.com/blog-763.html

上一篇:mysql_free_result

下一篇:mysql_field_table

评论