我的 PHP 代码有问题。我试图创建一个登录系统,但是当我执行登录时,我收到此错误
可捕获的致命错误:无法将 /var/www/html/ASSETS/PHP/functions.php 第 15 行中的 mysqli 类对象转换为字符串
有人可以帮忙吗?
我的 functions.php 文件
?php 函数 email_exists($email,$con) { $result = mysqli_query($con, "从用户中选择 id,其中 email='$email'"); 如果(mysqli_num_rows($result)== 1){ 返回 true; } 别的 { 返回 false; } } 函数 username_exists($username,$con) { $result = mysqli_query($con, “SELECT * FROM users WHERE username='$username'”); 如果(mysqli_num_rows($result)== 1){ 返回 true; } 别的 { 返回 false; } } 函数logging_in(){ 如果 (isset($_SESSION['用户名'])) { 返回 true; } 别的 { 返回 false; } } >