Files
core/twe/d_setting/conf.orig.php
T
Hide_D 47d5a07a81 conf에 return hint 추가
메시지 전송 준비
2018-01-21 06:08:39 +09:00

18 lines
347 B
PHP

<?php
require_once(__dir__.'/../../d_setting/conf.php');
/**
* DB 객체 생성
*
* @return MeekroDB
*/
function newDB(){
$host = '_host_';
$user = '_user_';
$password = '_password_';
$dbName = '_dbName_';
$port = _port_;
$encoding = 'utf8';
return new MeekroDB($host,$user,$password,$dbName,$port,$encoding);
}