需要準備的資料分別是:電腦、php編輯器、瀏覽器。
1、首先,開啟php編輯器,新php文件,例如:index.php。 (推薦學習:PHP程式設計從入門到精通)
2、在index.php中,輸入程式碼:
$conn = new mysqli('10.5.15.177', 'root', '', 'test'); $sql = "select * from stu"; $r = $conn->query($sql); print_r($r->num_rows);
3、瀏覽器運行index.php頁面,此時印出了stu表的記錄數是5。
以上是php統計資料庫有幾個數據的詳細內容。更多資訊請關注PHP中文網其他相關文章!