PHP mysqli_fetch_field_direct() 函數(shù)
PHP MySQLi 參考手冊
實例
返回結(jié)果集中某個單一字段(列)的 meta-data,并輸出字段名稱、表格和最大長度:
<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// Check connection
if (mysqli_connect_errno($con))
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$sql="SELECT Lastname,Age FROM Persons ORDER BY Lastname";
if ($result=mysqli_query($con,$sql))
{
// Get field information for "Age"
$fieldinfo=mysqli_fetch_field_direct($result,1);
printf("Name: %sn",$fieldinfo->name);
printf("Table: %sn",$fieldinfo->table);
printf("max. Len: %dn",$fieldinfo->max_length);
// Free result set
mysqli_free_result($result);
}
mysqli_close($con);
?>
定義和用法
mysqli_fetch_field_direct() 函數(shù)從結(jié)果集中取得某個單一字段(列)的 meta-data,并作為對象返回。
語法
mysqli_fetch_field_direct(result,fieldnr);
參數(shù) | 描述 |
result | 必需。規(guī)定由 mysqli_query()、mysqli_store_result() 或 mysqli_use_result() 返回的結(jié)果集標(biāo)識符。 |
fieldnr | 必需。規(guī)定字段號。必須介于 0 和 字段數(shù)-1 之間。 |
技術(shù)細(xì)節(jié)
返回值: | 返回包含字段定義信息的對象。如果沒有可用信息則返回 FALSE。該對象有下列屬性: - name - 列名
- orgname - 原始的列名(如果指定了別名)
- table - 表名
- orgtable - 原始的表名(如果指定了別名)
- def - 該字段的默認(rèn)值
- max_length - 字段的最大寬度
- length - 在表定義中規(guī)定的字段寬度
- charsetnr - 字段的字符集號
- flags - 字段的位標(biāo)志
- type - 用于字段的數(shù)據(jù)類型
- decimals - 整數(shù)字段,小數(shù)點后的位數(shù)
|
PHP 版本: | 5+ |
PHP MySQLi 參考手冊
更多建議: