gpt4 book ai didi

php - fatal error : Object of class mysqli could not be converted to string

转载 作者:行者123 更新时间:2023-12-01 00:04:20 25 4
gpt4 key购买 nike

我正在尝试从 OOP 开始,因为它似乎比我以前的编码方式要好得多,但现在我正在尝试创建一个 mysql 连接类,但我一遍又一遍地收到相同的错误。

我使用 2 个类,第一个用于连接,另一个用于查询。

类用户(查询)

class Users{
protected $_userid, $_username, $_lastLogged, $_rank,
$_driverLicense, $_experience, $_maxExperience,
$_cash, $_vehicle, $_residence, $_weapon, $_tool,
$_memberSince, $_about;

var $con;

function getConnection($con){
return $this->$con;
}

function checkLogin($username, $password){
$stmtCheckLogin = $this -> getConnection() -> prepare('SELECT `id`, `password` FROM `tbl_users` WHERE `username` = ? ');
$stmtCheckLogin -> bind_param('s', $username);
$stmtCheckLogin -> execute();
$stmtCheckLogin -> bind_result($id, $password);
$stmtCheckLogin -> store_result();
$stmtCheckLogin -> fetch(); // just a test to see if everything is working correctly
echo $id. "<br/>";
echo $password;
}

}

数据库类(连接) 数据库类{

function getCon(){
$con = new mysqli('127.0.0.1', 'root', '', 'mafioso');
if(!$con){
throw new Exception('Could not connect to database..');
}else{
return $con;
}
}

function __destruct(){
$this -> getCon() -> close();
}
}

这就是我尝试称呼他们的方式

<?php require_once('classes/User.php'); require_once('classes/db.php');

$db = new db;
$user = new Users();
$user -> getConnection($db -> getCon());
if(!isset($_SESSION['checkLogin']) || ($_SESSION['checkLogin'] == 0)){


if(isset($_POST['login'])){
$user -> checkLogin($_POST['username'], $_POST['password']);
}
?>

这是我不断收到的错误:

 Catchable fatal error: Object of class mysqli could not be converted to string in classes\User.php on line 12

最佳答案

$this->$con; 应该是 $this->con;

整个方法似乎是一个 getter/setter 混合体,不会起作用。

有一些获取属性的方法,例如:

function getConnection() {
return $this->con;
}

和 setter 方法来设置属性的值,例如

function setConnection($con) {
return $this->con = $con;
}

$this 是您当前所在的类(class)。使用 -> 您可以寻址方法和/或属性。但是您不需要再次编写 $,因为 $this-> 已经暗示它是一个变量或方法。

好的 OO 的其他提示:

  • 为您的属性指定范围,例如 publicprivateprotected
  • $this->obj 而不是 $this -> obj
  • 不要在自己的类中调用 getter 方法,如 getConnection()。您可以只使用 $this->con 代替

关于php - fatal error : Object of class mysqli could not be converted to string,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24553586/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com