<?php
$link = mysqli_connect("localhost", "my_user", "my_password", "world");
/* 检查连接 */
if (mysqli_connect_errno()) {
 printf("连接失败: %s\n", mysqli_connect_error());
 exit();
}
$query = "SELECT Name, SurfaceArea from Country ORDER BY Code LIMIT 5";
if ($result = mysqli_query($link, $query)) {
 /* 获取所有字段的字段信息 */
 while ($finfo = mysqli_fetch_field($result)) {
 printf("名称: %s\n", $finfo->name);
 printf("表: %s\n", $finfo->table);
 printf("最大长度: %d\n", $finfo->max_length);
 printf("标志: %d\n", $finfo->flags);
 printf("类型: %d\n\n", $finfo->type);
 }
 mysqli_free_result($result);
}
/* 关闭连接 */
mysqli_close($link);
?>
    
   
Name:     Name
Table:    Country
max. Len: 11
Flags:    1
Type:     254
Name:     SurfaceArea
Table:    Country
max. Len: 10
Flags:    32769
Type:     4