colly_wyx
2018-03-29 47e5316450f7487ff62c0ae9333d070d59d2b397
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
/**
 * PhalApi_DB数据库接口
 * 
 * @TODO 待接口统一
 * 
 * @package     PhalApi\DB
 * @license     http://www.phalapi.net/license GPL 协议
 * @link        http://www.phalapi.net/
 * @author      dogstar <chanzonghuang@gmail.com> 2015-02-09
 */
interface PhalApi_DB{
 
    public function connect();
    
    public function disconnect();
}