日期:2012-12-13  浏览次数:20557 次

 

(7) 数据库信息函数(2个):
  
  1
mysql_fetch_field()
  
格式:object mysql_fetch_field(int query , int [field_offset]);
  
  
返回1个对象,即一哈希表,下标有:
  table :
表名
  name :
字段名
  max_length :
该字段的最大长度
  not_null :
字段为not null则返回1,否则返回0
  primary_key :
字段为primary key则返回1,否则返回0
  unique_key :
字段为unique key则返回1,否则返回0
  multiple_key :
字段为非unique key则返回1,否则返回0
&nbs