ndfweb.cn

php mysql獲取表字段名稱和字段信息的三種方法


2022-01-24 11:33:44 (4938)



使用desc獲取表字段信息

php代碼如下:

1
2
3
4
5
6
7
8
9
<?php
  mysql_connect("localhost","root","");
  mysql_select_db("test");
  $query = "desc student";
  $result = mysql_query($query);
  while($row=mysql_fetch_assoc($result)){
 print_r($row);
  }
?>

運行結果:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
Array
(
  [Field] => student_id
  [Type] => int(4)
  [Null] => NO
  [Key] => PRI
  [Default] =>
  [Extra] => auto_increment
)
Array
(
  [Field] => student_name
  [Type] => varchar(50)
  [Null] => NO
  [Key] =>
  [Default] =>
  [Extra] =>
)
Array
(
  [Field] => class_id
  [Type] => int(4)
  [Null] => NO
  [Key] =>
  [Default] =>
  [Extra] =>
)
Array
(
  [Field] => total_score
  [Type] => int(4)
  [Null] => NO
  [Key] =>
  [Default] =>
  [Extra] =>
)

使用SHOW FULL FIELDS獲取表字段信息

php代碼如下:

1
2
3
4
5
6
7
8
9
<?php
  mysql_connect("localhost","root","");
  mysql_select_db("test");
  $query = "SHOW FULL COLUMNS FROM student";
  $result = mysql_query($query);
  while($row=mysql_fetch_assoc($result)){
 print_r($row);
  }
?>

運行結果:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Array
(
  [Field] => student_id
  [Type] => int(4)
  [Collation] =>
  [Null] => NO
  [Key] => PRI
  [Default] =>
  [Extra] => auto_increment
  [Privileges] => select,insert,update,references
  [Comment] =>
)
Array
(
  [Field] => student_name
  [Type] => varchar(50)
  [Collation] => latin1_swedish_ci
  [Null] => NO
  [Key] =>
  [Default] =>
  [Extra] =>
  [Privileges] => select,insert,update,references
  [Comment] =>
)
Array
(
  [Field] => class_id
  [Type] => int(4)
  [Collation] =>
  [Null] => NO
  [Key] =>
  [Default] =>
  [Extra] =>
  [Privileges] => select,insert,update,references
  [Comment] =>
)
Array
(
  [Field] => total_score
  [Type] => int(4)
  [Collation] =>
  [Null] => NO
  [Key] =>
  [Default] =>
  [Extra] =>
  [Privileges] => select,insert,update,references
  [Comment] =>
)

使用mysql_fetch_field方法獲取表字段信息

php代碼如下:

1
2
3
4
5
6
7
8
9
10
11
12
<?php
  mysql_connect("localhost","root","");
  mysql_select_db("test");
  $query = "SELECT * FROM student LIMIT 1";
  $result = mysql_query($query);
  $fields = mysql_num_fields($result);
  for($count=0;$count<$fields;$count++)
  {
   $field = mysql_fetch_field($result,$count);
  print_r($field);
  }
?>

運行結果如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
stdClass Object
(
  [name] => student_id
  [table] => student
  [def] =>
  [max_length] => 1
  [not_null] => 1
  [primary_key] => 1
  [multiple_key] => 0
  [unique_key] => 0
  [numeric] => 1
  [blob] => 0
  [type] => int
  [unsigned] => 0
  [zerofill] => 0
)
stdClass Object
(
  [name] => student_name
  [table] => student
  [def] =>
  [max_length] => 5
  [not_null] => 1
  [primary_key] => 0
  [multiple_key] => 0
  [unique_key] => 0
  [numeric] => 0
  [blob] => 0
  [type] => string
  [unsigned] => 0
  [zerofill] => 0
)
stdClass Object
(
  [name] => class_id
  [table] => student
  [def] =>
  [max_length] => 1
  [not_null] => 1
  [primary_key] => 0
  [multiple_key] => 0
  [unique_key] => 0
  [numeric] => 1
  [blob] => 0
  [type] => int
  [unsigned] => 0
  [zerofill] => 0
)
stdClass Object
(
  [name] => total_score
  [table] => student
  [def] =>
  [max_length] => 3
  [not_null] => 1
  [primary_key] => 0
  [multiple_key] => 0
  [unique_key] => 0
  [numeric] => 1
  [blob] => 0
  [type] => int
  [unsigned] => 0
  [zerofill] => 0
)


本文版权:http://www.ndfweb.cn/news-916.html
  NDF俱乐部
  国际域名注册
  建站咨询
简体中文 NDF网站建设淘宝店 | ICO图标在线生成 | 外贸网站建设 | 联系我们
©2007-2024 NDF Corporation 鲁ICP备08005967号 Sitemap - RSSRSS订阅