Home  >  Article  >  Backend Development  >  PHP中mysql_field_type()函数用法_php技巧

PHP中mysql_field_type()函数用法_php技巧

WBOY
WBOYOriginal
2016-05-16 20:30:33952browse

本文实例讲述了PHP中mysql_field_type()函数用法。分享给大家供大家参考。具体如下:

定义和用法:mysql_field_type() 函数返回结果集中指定字段的类型,如果成功,则返回指定字段的类型,如果失败,则返回 false.

语法:mysql_field_type(data,field_offset)

参数 描述
data 必需,要使用的数据指针,该数据指针是从 mysql_query() 返回的结果.
field_offset 必需,指示从哪个字段开始返回,0 指示第一个字段.

复制代码 代码如下:
mysql_connect("localhost","root","");
mysql_select_db("mydatabase");
$query = "SELECT id as ID, title FROM mytable ORDER BY title";
$result = mysql_query($query);
$row = mysql_fetch_row($result);
echo mysql_field_type($result, 0);
?>

希望本文所述对大家的PHP程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn