mysqli_stmt_field_count()函數(shù)返回給定語句中的字段數(shù)。
mysqli_stmt_field_count()函數(shù)接受語句對象作為參數(shù),并返回給定語句結(jié)果中的字段數(shù)。
mysqli_stmt_field_count($stmt)
序號 | 參數(shù)及說明 |
---|---|
1 | stmt(必需) 這是表示執(zhí)行SQL查詢的語句的對象。 |
PHP mysqli_stmt_field_count()函數(shù)返回一個整數(shù)值,該值指示該語句返回的結(jié)果集中的行數(shù)。
此函數(shù)最初是在PHP版本5中引入的,并且可以在所有更高版本中使用。
以下示例演示了mysqli_stmt_field_count()函數(shù)的用法(面向過程風(fēng)格),返回字段數(shù):
<?php $con = mysqli_connect("localhost", "root", "password", "mydb"); mysqli_query($con, "CREATE TABLE myplayers(ID INT, First_Name VARCHAR(255), Last_Name VARCHAR(255), Place_Of_Birth VARCHAR(255), Country VARCHAR(255))"); print("創(chuàng)建表.....\n"); mysqli_query($con, "INSERT INTO myplayers values(1, 'Sikhar', 'Dhawan', 'Delhi', 'India')"); mysqli_query($con, "INSERT INTO myplayers values(2, 'Jonathan', 'Trott', 'CapeTown', 'SouthAfrica')"); mysqli_query($con, "INSERT INTO myplayers values(3, 'Kumara', 'Sangakkara', 'Matale', 'Srilanka')"); print("插入記錄.....\n"); //檢索表的內(nèi)容 $stmt = mysqli_prepare($con, "SELECT * FROM myplayers"); //執(zhí)行語句 mysqli_stmt_execute($stmt); //字段數(shù) $count = mysqli_stmt_field_count($stmt); print("字段數(shù) : ".$count); //結(jié)束語句 mysqli_stmt_close($stmt); //關(guān)閉連接 mysqli_close($con); ?>
輸出結(jié)果
創(chuàng)建表..... 插入記錄..... 字段數(shù) : 5
在面向?qū)ο箫L(fēng)格中,此函數(shù)的語法為$stmt->field_count;。以下是面向?qū)ο箫L(fēng)格中此函數(shù)的示例;
<?php //建立連接 $con = new mysqli("localhost", "root", "password", "mydb"); $con -> query("CREATE TABLE myplayers(ID INT, First_Name VARCHAR(255), Last_Name VARCHAR(255), Place_Of_Birth VARCHAR(255), Country VARCHAR(255))"); print("創(chuàng)建表.....\n"); $con -> query("INSERT INTO myplayers values(1, 'Sikhar', 'Dhawan', 'Delhi', 'India')"); $con -> query("INSERT INTO myplayers values(2, 'Jonathan', 'Trott', 'CapeTown', 'SouthAfrica')"); print("插入記錄.....\n"); //檢索數(shù)據(jù) $stmt = $con ->prepare("SELECT First_Name, Last_Name, Country FROM myplayers"); //執(zhí)行語句 $stmt->execute(); //字段數(shù) $count = $stmt->field_count; print("字段數(shù): ".$count); //結(jié)束語句 $stmt->close(); //關(guān)閉連接 $con->close(); ?>
輸出結(jié)果
創(chuàng)建表..... 插入記錄..... 字段數(shù): 3