Last active
February 11, 2025 09:44
-
-
Save milan-sahana/c42d56711cf1c707f40ae239619f9ec4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include_once __DIR__.'/../class/Database.php'; | |
class classDbTable extends Database { | |
public $mysql; | |
public $table = null; | |
public $error = null; | |
public $errno = 0; | |
public $lastQuery = ''; | |
function __construct($table, $con=false) { | |
$this->table = $table; | |
$this->mysql = $con?$con:$this->connect(); | |
$this->errno = $this->mysql->errno; | |
$this->error = $this->mysql->error; | |
} | |
public function refreshErrorInfo() { | |
$this->errno = $this->mysql->errno; | |
$this->error = $this->mysql->error; | |
} | |
function __destruct() | |
{ | |
// if($this->con) { | |
try { | |
// if(is_resource($this->mysql) && get_resource_type($this->mysql) === 'mysql link') { | |
if(isset($this->mysql->server_info)) { | |
/* if server is alive */ | |
// $page_name = basename($_SERVER['PHP_SELF']); | |
// $actual_link = (empty($_SERVER['HTTPS']) ? 'http' : 'https') . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; | |
// $page_name = $_SERVER['PHP_SELF']; | |
// $query = "INSERT IGNORE INTO `log_connection_not_closed`(`page_name`) VALUES ('$page_name')"; | |
// $this->mysql->query($query); | |
$this->mysql->close(); | |
} | |
// else { | |
// | |
// } | |
} | |
catch(Exception $e) { | |
// echo 'Message: ' .$e->getMessage(); | |
} | |
// } | |
} | |
public function getLastQuery() | |
{ | |
return $this->lastQuery; | |
} | |
public function update($data_arr, $where = 0) | |
{ | |
if((is_array($data_arr) && count($data_arr)) || (is_string($data_arr) && strlen(trim($data_arr))) ) { | |
$set_string = self::makeStringForUpdate($data_arr); | |
$where_string = ""; | |
if(is_numeric($where)) { | |
$where_string = "`id`= '$where' "; | |
} | |
elseif(is_array($where) && count($where)) { | |
foreach($where as $key => $value) { | |
if($value === null || $value === 'null' || $value === 'NULL') { | |
$where_string .= " `$key` IS NULL "; | |
} | |
else { | |
$where_string .= " `$key`="; | |
$where_string .= "'".addslashes($value)."'"; | |
} | |
$where_string .= " AND"; | |
} | |
$where_string = substr($where_string, 0, -3); // remove last AND | |
} | |
else { | |
$where_string = $where; | |
} | |
$this->lastQuery = "UPDATE `" . $this->table . "` SET $set_string WHERE $where_string ;"; | |
$result = $this->mysql->query($this->lastQuery); | |
$this->refreshErrorInfo(); // Update error info after the query | |
return $result; | |
// if($this->mysql->affected_rows) { | |
// return true; | |
// } | |
// else { | |
// return false; | |
// } | |
} | |
else { | |
throw new Exception("data array required", __LINE__); | |
} | |
} | |
public function select_by_id($id, $column_arr = null, $where = null) { | |
if(is_array($where)) { | |
$where_string = array_merge($where, ['id' => $id]); | |
} | |
elseif(is_string($where)) { | |
$where_string = $where." AND `id`={$id}"; | |
} | |
else { | |
$where_string = ['id' => $id]; | |
} | |
$result = $this->select($column_arr, $where_string,null,1); | |
return isset($result[0])?$result[0]:null; | |
} | |
public function selectOne($column_arr = null, $where = null) | |
{ | |
$result = $this->select($column_arr, $where, null, 1); | |
return isset($result[0]) ? $result[0] : null; | |
} | |
public function select($column_arr = null, $where = null, $order_by=null, $limit=null, $offset=0) | |
{ | |
$column_string = (is_array($column_arr) && count($column_arr)) ? implode(", ", $column_arr) : (is_string($column_arr) ? $column_arr : '*'); | |
if(is_numeric($where)) { | |
$where_string = "`id`= '$where' "; | |
} | |
elseif(is_array($where) && count($where)) { | |
$where_string = ""; | |
foreach($where as $key => $value) { | |
if($value === null || $value === 'null' || $value === 'NULL') { | |
$where_string .= " `$key` IS NULL "; | |
} | |
else { | |
$where_string .= " `$key`="; | |
$where_string .= "'".addslashes($value)."'"; | |
} | |
$where_string .= " AND"; | |
} | |
$where_string = substr($where_string, 0, -3); // remove last AND | |
} | |
elseif(is_string($where)) { | |
$where_string = $where; | |
} | |
else { | |
$where_string = ''; | |
} | |
$where_string = $where_string ? "WHERE $where_string" : ''; | |
if(is_array($order_by) && count($order_by)) { | |
$order_by_arr = []; | |
foreach($order_by as $key => $value) { | |
if(is_numeric($key)) { | |
$order_by_arr[] = "{$value}"; | |
} | |
elseif(strtoupper($value)==='ASC' || strtoupper($value)==='DESC') { | |
$order_by_arr[] = "{$key} {$value}"; | |
} | |
} | |
$order_by_string = implode(", ", $order_by_arr); | |
} | |
elseif(is_string($order_by)) { | |
$order_by_string = $order_by; | |
} | |
else { | |
$order_by_string = ''; | |
} | |
$order_by_string = $order_by_string ? " ORDER BY $order_by_string" : ''; | |
$limit_string = ($limit)?" LIMIT $offset, $limit":''; | |
$this->lastQuery = "SELECT {$column_string} FROM `{$this->table}` {$where_string} {$order_by_string} {$limit_string};"; | |
$res = $this->mysql->query($this->lastQuery); | |
if($res->num_rows) { | |
$result = $res->fetch_all(MYSQLI_ASSOC); | |
} | |
else { | |
$result = false; | |
} | |
$this->refreshErrorInfo(); // Update error info after the query | |
return $result; | |
// } | |
// else { | |
// throw new Exception("data array required", __LINE__); | |
// } | |
} | |
public function add($data_arr, $extras=null) { | |
if(is_array($data_arr) && count($data_arr)) { | |
$values = ""; | |
$temp = 0; | |
foreach($data_arr as $value) { | |
$temp++; | |
if(is_array($value)) { | |
if($this->add($value,$extras) === true) { | |
if(count($data_arr)===$temp) { | |
$this->refreshErrorInfo(); | |
return true; | |
} | |
else { | |
// continue; | |
} | |
} | |
else { | |
$this->refreshErrorInfo(); | |
return false; | |
} | |
} | |
else { | |
if($value === null || $value === 'null' || $value === 'NULL') { | |
$values .= " NULL "; | |
} | |
else { | |
$values .= "'".addslashes($value)."'"; | |
} | |
$values .= ","; | |
} | |
} | |
$values = substr($values,0,-1); // remove last comma | |
if(isset($extras['ignore']) && $extras['ignore']) { | |
$sql_ignore = " IGNORE "; | |
} | |
else { | |
$sql_ignore = " "; | |
} | |
if(isset($extras['update']) && $extras['update']) { | |
if(is_bool($extras['update'])) { | |
$sql_update_string = self::makeStringForUpdate($data_arr); | |
} | |
else { | |
$sql_update_string = self::makeStringForUpdate($extras['update']); | |
} | |
$sql_update = " ON DUPLICATE KEY UPDATE $sql_update_string"; | |
} | |
else { | |
$sql_update = " "; | |
} | |
$this->lastQuery = "INSERT{$sql_ignore}INTO `".$this->table."`(`".implode("`, `", array_keys($data_arr))."`) VALUES ($values) $sql_update"; | |
/* | |
$this->mysql->query($this->lastQuery); | |
if($this->mysql->insert_id) { | |
return true; | |
} | |
else { | |
return false; | |
} | |
*/ | |
$result = $this->mysql->query($this->lastQuery); | |
$this->refreshErrorInfo(); | |
return $result; | |
} | |
else { | |
throw new Exception("data array required", __LINE__); | |
} | |
} | |
public function addBulk($data_arr,$extras) { | |
$temp = 0; | |
if(is_array($data_arr) && count($data_arr)) { | |
$this->mysql->autocommit(false); | |
foreach($data_arr as $value) { | |
$temp++; | |
if(is_array($value) && count($value)) { | |
if($this->add($value,$extras) === true) { | |
if(count($data_arr) === $temp) { | |
$this->refreshErrorInfo(); | |
return true; | |
} | |
else { | |
// continue; | |
} | |
} | |
else { | |
$this->mysql->rollback(); | |
$this->refreshErrorInfo(); | |
return false; | |
} | |
} | |
else { | |
throw new Exception("data array required", __LINE__); | |
} | |
} | |
$this->mysql->rollback(); | |
$this->refreshErrorInfo(); | |
return false; | |
} | |
else { | |
throw new Exception("data multi array required", __LINE__); | |
} | |
} | |
protected static function makeStringForUpdate($data_arr) { | |
if((is_array($data_arr) && count($data_arr)) || (is_string($data_arr) && strlen(trim($data_arr))) ) { | |
$set_string = ""; | |
if(is_array($data_arr) && count($data_arr)) { | |
foreach($data_arr as $key => $value) { | |
if(count(explode("=", $key)) === 2) { | |
$set_string .= $key; // e.g. array("deleted_at=NOW()" => NULL) | |
} | |
else { | |
$set_string .= " `$key`="; | |
if($value === null || $value === 'null' || $value === 'NULL') { | |
$set_string .= "NULL"; | |
} | |
else { | |
$set_string .= "'" . addslashes($value) . "'"; | |
} | |
} | |
$set_string .= ","; | |
} | |
$set_string = substr($set_string, 0, -1); // remove last comma | |
} | |
else { | |
$set_string = $data_arr; | |
} | |
} | |
else { | |
$set_string = $data_arr; | |
} | |
return $set_string; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(!class_exists('Database')) { | |
class Database | |
{ | |
private $db_host = 'localhost'; | |
private $db_user = 'daso_user1'; | |
private $db_pass = 'pwd1'; | |
private $db_name = 'daso_db1'; | |
private $con = ''; | |
public $lastQuery = null; | |
public function __construct() | |
{ | |
if($_SERVER['HTTP_HOST'] == 'localhost') { | |
$this->db_host = 'localhost'; | |
$this->db_user = 'root'; | |
$this->db_pass = ''; | |
$this->db_name = 'db_admin'; | |
} | |
} | |
public function getLastQuery() | |
{ | |
return $this->lastQuery; | |
} | |
public function connect() | |
{ | |
$this->con = mysqli_connect($this->db_host, $this->db_user, $this->db_pass, $this->db_name); | |
if(mysqli_connect_errno()) { | |
echo "Failed to connect to MySQL: ".mysqli_connect_error(); | |
die; | |
} | |
else { | |
// $this->con->query("SET NAMES utf8"); | |
$this->con->set_charset('utf8mb4'); | |
$this->con->query("SET @@session.time_zone = '+05:30'"); | |
$this->con->query("SET sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));"); | |
return $this->con; | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment