我有以下关闭
$dbhProvider = function (){
//Create connection.
$instance = new \mysqli('localhost', USERNAME, PASSWORD, 'BLOG');
return $instance;
};
我有以下实施
$mapper = new UserMapper($dbhProvider);
__constructor
的{{1}}看起来像这样
UserMapper
当我执行时,我有以下错误
public function __construct($connection){
$this->connection = $connection;
$sql = 'SELECT * FROM USERS WHERE ID=' . $this->user->getId();
$result = $this->connection->query($sql);
}
。如何正确实现以便Call to undefined method Closure::query()
实例变量保持$this->connection
连接?
答案 0 :(得分:3)
public function __construct($provider) {
// invoke the closure/provider/factory
// so that it returns the mysqli instance
// which then gets assigned to $this->connection
$this->connection = $provider();
$sql = 'SELECT * FROM USERS WHERE ID=' ....
}