取得所有欄位的欄位訊息,然後透過mysqli_field_tell() 取得目前欄位並輸出欄位名稱、表格和最大長度:
<?php // 假設資料庫使用者名稱:root,密碼:123456,資料庫:CODERCTO $con=mysqli_connect("localhost","root","123456","CODERCTO"); if (mysqli_connect_errno($con)) { echo "連線MySQL 失敗: " . mysqli_connect_error(); } $sql="SELECT name,url FROM websites ORDER BY alexa";if ($result=mysqli_query($con,$sql)){ //取得所有欄位資訊while ($fieldinfo=mysqli_fetch_field($result)) { // 取得目前欄位資訊$ currentfield=mysqli_field_tell($result); printf("列%d", $currentfield); echo "<br>"; printf("欄位名稱: %s", $fieldinfo->name); echo "<br>"; printf("表名: %s", $fieldinfo->table); echo "<br>"; } / / 釋放結果集mysqli_free_result($result);}mysqli_close($con);?>
mysqli_field_tell() 函數傳回欄位指標的位置。
mysqli_field_tell( result ) ;
參數 | 描述 |
---|---|
result | 必需。規定由mysqli_query()、mysqli_store_result() 或mysqli_use_result() 傳回的結果集標識符。 |
傳回值: | 傳回欄位指標的目前偏移量。 |
---|---|
PHP 版本: | 5+ |