Example #1
0
 private static function CheckIfPortIsDefault()
 {
     $port = Config::ReturnStringOfConfig("mysql_port");
     if ($port == "default" or $port == "DEFAULT") {
         return 3306;
     } else {
         return $port;
     }
 }