19 lines
316 B
PHP
19 lines
316 B
PHP
<?php
|
|
defined('IN_TS') or die('Access Denied.');
|
|
|
|
class my extends tsApp{
|
|
|
|
//构造函数
|
|
public function __construct($db){
|
|
$tsAppDb = array();
|
|
include 'app/my/config.php';
|
|
//判断APP是否采用独立数据库
|
|
if($tsAppDb){
|
|
$db = new MySql($tsAppDb);
|
|
}
|
|
|
|
parent::__construct($db);
|
|
}
|
|
|
|
}
|