*/ namespace wishthis; class Database { public \PDO $pdo; public function __construct( public string $host, public string $database, public string $user, public string $password, ) { $dsn = 'mysql:host=' . $this->host . ';dbname=' . $this->database . ';port=3306;charset=utf8'; $options = array(); try { $this->pdo = new \PDO($dsn, $this->user, $this->password, $options); } catch (\PDOException $PDOE) { throw new \PDOException($PDOE->getMessage(), (int)$PDOE->getCode()); } } public function query(string $query) { return $this->pdo->query( $query, \PDO::FETCH_ASSOC ); } public function getOption(string $key): string { $option = $this->query( 'SELECT * FROM `options` WHERE `key` = "' . $key . '";' )->fetch(); return $option['value']; } }