mysql_fetch_field
取得字段信息。
语法: object mysql_fetch_field(int result, int [field_offset]);
返回值: 类
函数种类: 数据库功能
本函数返回的类资料为 result 的字段 (Column) 信息。返回类的属性如下:
- name - 字段名称
- table - 字段所在表格的资料表名称
- max_length - 字段的最大长度
- not_null - 若为 1 表示本字段不能是空的 (null)
- primary_key - 若为 1 表示本字段是主要键 (primary key)
- unique_key - 若为 1 表示本字段为不可重覆键 (unique key)
- multiple_key - 若为 1 表示本字段为可重覆键 (non-unique key)
- numeric - 若为 1 表示本字段为数字类型 (numeric)
- blob - 若为 1 表示本字段为位类型 (BLOB)
- type - 字段类型
- unsigned - 若为 1 表示本字段为无记号 (unsigned)
- zerofill - 若为 1 表示本字段为被零填满 (zero-filled)
mysql_field_seek()
整理: (www.phpernote.com)
|