| 12345678910111213141516171819 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2008 http://thinkphp.cn All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: liu21st <liu21st@gmail.com>
- // +----------------------------------------------------------------------
- // 导入别名定义
- alias_import(array(
- 'Model' => MODE_PATH.'Phprpc/Model.class.php',
- 'Db' => MODE_PATH.'Phprpc/Db.class.php',
- 'Debug' => CORE_PATH.'Util/Debug.class.php',
- 'Session' => CORE_PATH.'Util/Session.class.php',
- )
- );
|