You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
433 B
19 lines
433 B
<?php
|
|
/**
|
|
* @author DorisYang
|
|
*
|
|
*/
|
|
abstract class BasicEnum{
|
|
const title = "Basic";
|
|
|
|
const DBLocate = "db-104.coowo.com:3306"; // database location
|
|
const DBName = "masada_test"; // database name
|
|
const DBUser = "masada"; // database user
|
|
const DBPassword = "w!CIkj435h10cwAp"; // database password
|
|
|
|
|
|
const DomainUrl = 'http://www.masada.show/';
|
|
// const DomainUrl = 'https://masadatest.creer-design.com/'; //測試區
|
|
|
|
}
|
|
?>
|
|
|