generateFileUsingSimpleTemplate의 변환 규칙 변경

This commit is contained in:
2018-03-17 22:08:34 +09:00
parent 7f885f7a69
commit 96e4c08ee9
4 changed files with 26 additions and 26 deletions
+6 -6
View File
@@ -7,11 +7,11 @@ require_once(__dir__.'/../../d_setting/conf.php');
* @return MeekroDB
*/
function getDB(){
$host = '_host_';
$user = '_user_';
$password = '_password_';
$dbName = '_dbName_';
$port = _port_;
$host = '_tK_host_';
$user = '_tK_user_';
$password = '_tK_password_';
$dbName = '_tK_dbName_';
$port = _tK_port_;
$encoding = 'utf8';
static $uDB = NULL;
@@ -26,5 +26,5 @@ function getDB(){
function getServPrefix()
{
return '_prefix_';
return '_tK_prefix_';
}