php mysqli_fetch_lengths()函數傳回結果集中的欄位長度。語法為mysqli_fetch_lengths(result);若成功,則函數傳回數字數組,若出錯或沒有其他的行,則傳回 false。
php mysqli_fetch_lengths()函數怎麼用?
mysqli_fetch_lengths()函數傳回結果集中的欄位長度。
語法:
mysqli_fetch_lengths(result);
參數
#result:必要。規定由 mysqli_query()、mysqli_store_result() 或 mysqli_use_result() 傳回的結果集標識符。
傳回值:若成功,則函數傳回數字數組,若出錯或沒有其他的行,則傳回 false。
php mysqli_fetch_lengths()函數 範例
#傳回結果集中的欄位長度:
<?php // 假定数据库用户名:root,密码:123456,数据库:data $con=mysqli_connect("localhost","root","123456","data"); 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>"; } // 释放结果集 mysqli_free_result($result); } mysqli_close($con); ?>
以上是php mysqli_fetch_lengths函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!