我得到這個錯誤:收到錯誤:類的mysqli的對象不能轉換爲字符串上線5
Catchable fatal error: Object of class mysqli could not be converted to string in C:\xampp\htdocs\gym\userAvailability.php on line 5
這是代碼:
<?php
function username_exists($username, $con){
$sql = "SELECT * FROM admin WHERE username = '$username'";
$result = mysqli_query($con, sql);
$resultarr = mysqli_fetch_assoc($result);
if(!mysqli_num_rows($result) == 1){
return true;
}else{
return false;
}
}
我已經還檢查了.php
文件中所有使用function username_exist
的變量名,並且它們都是正確的。有想法該怎麼解決這個嗎?
我斗膽要傳遞的參數錯誤的順序,以你的函數。你可以嘗試鍵入連接以確保:'函數username_exists($ username,mysqli $ con)' –