DB Connection
db.php
include "db_1.php"; //primary db
include "db_2.php"; //secondary db
//7.3이하
#setcookie($name, $value, 0, "/; SameSite=None; Secure;");
//7.3이상
#setcookie('same-site-cookie', 'foo', ['samesite' => 'Lax']);
#setcookie('cross-site-cookie', 'bar', ['samesite' => 'None', 'secure' => true]); // 도메인이 다를 경우
//세션 끊김, 쿠키 samesite 대체 방법 -- session_start() 대신 하기 함수로 대체
function session_start_samesite($options = array()){
$res = @session_start($options);
$headers = headers_list();
foreach ($headers as $header) {
if (!preg_match('~^Set-Cookie: PHPSESSID=~', $header)) continue;
$header = preg_replace('~; secure(; HttpOnly)?$~', '', $header) . '; secure; SameSite=None';
header($header, false);
}
return $res;
}
session_start_samesite();
//session_start();
#date_default_timezone_set("Australia/Sydney");
$currentDate = date("Y-m-d");
$currentDateTime = date("Y-m-d H:i:s");
$currentWeek = date("D");
db_1.php
$global_vars = array(
"DB_HOST" => "db_host",
"DB_NAME" => "db_name",
"DB_USER" => "db_user_name",
"DB_PWD" => "password",
);
while (list($key, $value) = each($global_vars))
{
define($key, $value);
}
class open_DB {
var $lid = 0; // 데이타베이스 연결식별자(link id)
var $qid = 0; // 결과레코드필드 접속 식별자(query id)
var $row; // 결과레코드의 현재 레코드
var $record = array(); // 결과레코드세트에서 가져온 한줄의 레코드
var $error = ""; // 에러메시지
var $errno = ""; // 에러코드
// 데이타베이스 접속함수
function connect() {
if ($this->lid == 0) {
$this->lid = @mysqli_connect(DB_HOST,DB_USER,DB_PWD);
if (!$this->lid) {
$this->halt("connect failed.");
}
if (!@mysqli_select_db($this->lid,DB_NAME)) {
$this->halt(DB_NAME. " Cannot connect DB.");
return 0;
}
}
mysqli_set_charset($this->lid, "utf8");
return $this->lid;
}
// 쿼리문 실행함수
function query($q) {
if (empty($q))
return 0;
if (!$this->connect()) {
return 0;
}
if ($this->qid) {
@mysqli_free_result($this->qid);
$this->qid = 0;
}
// @mysqli_query('set names utf8');
$this->qid = mysqli_query($this->lid,$q);
$this->row = 0;
@ $this->errno = mysqli_errno();
@ $this->error = mysqli_error();
if (!$this->qid) {
$this->halt("Invalid SQL: ".$q);
}
return $this->qid;
}
// 결과레코드에서 연관배열의 형태로 레코드값을 가져와서 반환하는 함수
function next_record() {
if (!$this->qid) {
$this->halt("No Result Record");//결과레코드 접속식별자가 없습니다.
return 0;
}
$this->record = mysqli_fetch_array($this->qid);
$this->row += 1;
@ $this->errno = mysqli_errno();
@ $this->error = mysqli_error();
$stat = is_array($this->record);
return $stat;
}
// 연관배열로 가져온 값중 참조키에 해당하는 값을 반환하는 함수
function f($field_name) {
return stripslashes($this->record[$field_name]);
}
function sf($field_name) {
global $vars, $default;
if ($vars["error"] and $vars["$field_name"]) {
return stripslashes($vars["$field_name"]);
} elseif ($default["$field_name"]) {
return stripslashes($default["$field_name"]);
} else {
return stripslashes($this->record[$field_name]);
}
}
// 참조키에 해당하는 값은 가져와서 출력하는 함수
function p($field_name) {
print stripslashes($this->record[$field_name]);
}
function sp($field_name) {
global $vars, $default;
if ($vars["error"] and $vars["$field_name"]) {
print stripslashes($vars["$field_name"]);
} elseif ($default["$field_name"]) {
print stripslashes($default["$field_name"]);
} else {
print stripslashes($this->record[$field_name]);
}
}
// 결과레코드의 갯수를 반환하는 함수
function num_rows() {
if ($this->lid) {
return @mysqli_numrows($this->qid);
}
else {
return 0;
}
}
// 에러메시지 출력함수
function halt($msg) {
$this->error = @mysqli_error($this->lid);
$this->errno = @mysqli_errno($this->lid);
echo "";
exit;
}
function insert_id() {
return mysqli_insert_id();
}
function free() {
if ($this->lid) {
return @mysqli_close($this->lid);
}
else {
return 0;
}
}
}
$db = new open_DB;
//$db1 = new open_DB; # db 더 연결하려면 추가