NULL -> null

This commit is contained in:
2018-03-24 12:38:03 +09:00
parent ec3d0c5f68
commit 6f186125e3
9 changed files with 14 additions and 14 deletions
+2 -2
View File
@@ -33,9 +33,9 @@ function getRootDB(){
$port = _tK_port_;
$encoding = 'utf8';
static $uDB = NULL;
static $uDB = null;
if($uDB === NULL){
if($uDB === null){
$uDB = new MeekroDB($host,$user,$password,$dbName,$port,$encoding);
$uDB->connect_options[MYSQLI_OPT_INT_AND_FLOAT_NATIVE] = true;
}