PHP mysqli_fetch_lengths() 函數(shù)
PHP mysqli_fetch_lengths() 函數(shù)
返回結(jié)果集中的字段長度:
<?php // 假定數(shù)據(jù)庫用戶名:root,密碼:123456,數(shù)據(jù)庫:RUNOOB $con=mysqli_connect("localhost","root","123456","RUNOOB"); 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)) { $row=mysqli_fetch_row($result); // 顯示字段長度 foreach (mysqli_fetch_lengths($result) as $i=>$val) { printf("字段 %2d 長度為: %2d",$i+1,$val); echo "<br>"; } // 釋放結(jié)果集 mysqli_free_result($result); } mysqli_close($con); ?>
定義和用法
mysqli_fetch_lengths() 函數(shù)返回結(jié)果集中的字段長度。
語法
mysqli_fetch_lengths(result);
參數(shù) | 描述 |
---|---|
result | 必需。規(guī)定由 mysqli_query()、mysqli_store_result() 或 mysqli_use_result() 返回的結(jié)果集標識符。 |
技術(shù)細節(jié)
返回值: | 如果整數(shù)表示每個字段(列)的長度則返回數(shù)組,如果發(fā)生錯誤則返回 FALSE。 |
---|---|
PHP 版本: | 5+ |

相關(guān)文章
- PHP EOF(heredoc) 使用說明
- PHP 數(shù)據(jù)類型
- PHP 字符串
- PHP Cookie
- PHP 錯誤處理
- PHP JSON
- PHP array_flip() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_search() 函數(shù)
- PHP array_udiff_assoc() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP array_unshift() 函數(shù)
- PHP current() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP sort() 函數(shù)
- PHP uasort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP Mail 函數(shù)
- PHP 雜項 函數(shù)