@bogdan-lmk

Ошибка Parse error: syntax error, unexpected 'public' (T_PUBLIC), expecting end of file in D:\local\htdocs\add\libs\Database.php on line 31?

<?php
class Database{
private $host = DB_HOST;
private $user = DB_USER;
private $pass = DB_PASS;
private $dbname = DB_NAME;

private $dbh;
private $error;
private $stmt;

public function __construct(){
// Set DSN
$dsn = 'mysql:host=' . $this->host . ';dbname=' . $this->dbname;
// Set options
$options = array(
PDO::ATTR_PERSISTENT => true,
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
);
// Create a new PDO instanace
try{
$this->dbh = new PDO($dsn, $this->user, $this->pass, $options);
}
// Catch any errors
catch(PDOException $e){
$this->error = $e->getMessage();
}
}
}

public function query($query){
$this->stmt = $this->dbh->prepare($query);
}

public function bind($param, $value, $type = null){
if (is_null($type)) {
switch (true) {
case is_int($value):
$type = PDO::PARAM_INT;
break;
case is_bool($value):
$type = PDO::PARAM_BOOL;
break;
case is_null($value):
$type = PDO::PARAM_NULL;
break;
default:
$type = PDO::PARAM_STR;
}
}
$this->stmt->bindValue($param, $value, $type);
}

public function execute(){
return $this->stmt->execute();
}
public function resultset(){
$this->execute();
return $this->stmt->fetchAll(PDO::FETCH_ASSOC);
}
public function single(){
$this->execute();
return $this->stmt->fetch(PDO::FETCH_ASSOC);
}
public function rowCount(){
return $this->stmt->rowCount();
}

public function beginTransaction(){
return $this->dbh->beginTransaction();
}

public function endTransaction(){
return $this->dbh->commit();
}

public function cancelTransaction(){
return $this->dbh->rollBack();
}
public function debugDumpParams(){
return $this->stmt->debugDumpParams();
}

?>
  • Вопрос задан
  • 6228 просмотров
Решения вопроса 2
zvermafia
@zvermafia
WebDev
public function __construct()
{
	// Set DSN
	$dsn = 'mysql:host=' . $this->host . ';dbname=' . $this->dbname;

	// Set options
	$options = array(
		PDO::ATTR_PERSISTENT => true,
		PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION
	);

	// Create a new PDO instanace
	try{
		$this->dbh = new PDO($dsn, $this->user, $this->pass, $options);
	}
	// Catch any errors
	catch(PDOException $e){
		$this->error = $e->getMessage();
	}
	} // <-- Уберите эту скобку!
}
Ответ написан
Комментировать
@AlexndrNovikov
Solution Architect in Spiral Scout
catch(PDOException $e){
$this->error = $e->getMessage();
}
}
}

одна из закрывающих скобок лишняя

public function query($query){

объявляется уже вне класса.
Ответ написан
Комментировать
Пригласить эксперта
Ответы на вопрос 1
HectorPrima
@HectorPrima
программист
перед public function query($query) лишняя скобка }
т.е. вы класс закончили. и следующие методы сами по себе.
Ответ написан
Комментировать
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы
YCLIENTS Москва
от 200 000 до 350 000 ₽
Ведисофт Екатеринбург
от 25 000 ₽
от 300 000 до 500 000 ₽
07 мая 2024, в 22:37
25000 руб./за проект
07 мая 2024, в 22:24
7000 руб./за проект
07 мая 2024, в 21:57
600 руб./за проект