| Linux hosting5.siteguarding.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64 Path : /home/devsafetybis/op4103.dev.safetybis.com/system/library/db/ |
| Current File : /home/devsafetybis/op4103.dev.safetybis.com/system/library/db/mysqli.php |
<?php
namespace Opencart\System\Library\DB;
/**
* Class MySQLi
*
* @package Opencart\System\Library\DB
*/
class MySQLi {
/**
* @var ?\mysqli
*/
private ?\mysqli $connection;
/**
* Constructor
*
* @param string $hostname
* @param string $username
* @param string $password
* @param string $database
* @param int $port
* @param string $ssl_key
* @param string $ssl_cert
* @param string $ssl_ca
*/
public function __construct(string $hostname, string $username, string $password, string $database, int $port = 0, string $ssl_key = '', string $ssl_cert = '', string $ssl_ca = '') {
if (!$port) {
$port = 3306;
}
// MSQL SSL connection
$temp_ssl_key_file = '';
if ($ssl_key) {
$temp_ssl_key_file = tempnam(sys_get_temp_dir(), 'mysqli_key_');
$handle = fopen($temp_ssl_key_file, 'w');
fwrite($handle, $ssl_key);
fclose($handle);
}
$temp_ssl_cert_file = '';
if ($ssl_cert) {
$temp_ssl_cert_file = tempnam(sys_get_temp_dir(), 'mysqli_cert_');
$handle = fopen($temp_ssl_cert_file, 'w');
fwrite($handle, $ssl_cert);
fclose($handle);
}
$temp_ssl_ca_file = '';
if ($ssl_ca) {
$temp_ssl_ca_file = tempnam(sys_get_temp_dir(), 'mysqli_ca_');
$handle = fopen($temp_ssl_ca_file, 'w');
fwrite($handle, '-----BEGIN CERTIFICATE-----' . PHP_EOL . $ssl_ca . PHP_EOL . '-----END CERTIFICATE-----');
fclose($handle);
}
try {
$this->connection = mysqli_init() ?: null;
if ($temp_ssl_key_file || $temp_ssl_cert_file || $temp_ssl_ca_file) {
$this->connection->ssl_set($temp_ssl_key_file, $temp_ssl_cert_file, $temp_ssl_ca_file, null, null);
$this->connection->real_connect($hostname, $username, $password, $database, $port, null, MYSQLI_CLIENT_SSL);
} else {
$this->connection->real_connect($hostname, $username, $password, $database, $port, null);
}
$this->connection->set_charset('utf8mb4');
$this->query("SET SESSION sql_mode = 'NO_ZERO_IN_DATE,NO_ENGINE_SUBSTITUTION'");
$this->query("SET FOREIGN_KEY_CHECKS = 0");
// Sync PHP and DB time zones
$this->query("SET `time_zone` = '" . $this->escape(date('P')) . "'");
} catch (\mysqli_sql_exception $e) {
throw new \Exception('Error: Could not make a database link using ' . $username . '@' . $hostname . '!<br/>Message: ' . $e->getMessage());
}
}
/**
* Query
*
* @param string $sql
*
* @return mixed
*/
public function query(string $sql) {
try {
$query = $this->connection->query($sql);
if ($query instanceof \mysqli_result) {
$data = [];
while ($row = $query->fetch_assoc()) {
$data[] = $row;
}
$result = new \stdClass();
$result->num_rows = $query->num_rows;
$result->row = $data[0] ?? [];
$result->rows = $data;
$query->close();
unset($data);
return $result;
} else {
return true;
}
} catch (\mysqli_sql_exception $e) {
throw new \Exception('Error: ' . $this->connection->error . '<br/>Error No: ' . $this->connection->errno . '<br/>' . $sql);
}
}
/**
* Escape
*
* @param string $value
*
* @return string
*/
public function escape(string $value): string {
return $this->connection->real_escape_string($value);
}
/**
* Count Affected
*
* @return int
*/
public function countAffected(): int {
return $this->connection->affected_rows;
}
/**
* Get Last Id
*
* @return int
*/
public function getLastId(): int {
return $this->connection->insert_id;
}
/**
* Is Connected
*
* @return bool
*/
public function isConnected(): bool {
return $this->connection !== null;
}
/**
* Destructor
*
* Closes the DB connection when this object is destroyed.
*/
public function __destruct() {
if ($this->connection) {
$this->connection->close();
$this->connection = null;
}
}
}