|
<?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>
// +----------------------------------------------------------------------
// $Id: alias.php 2504 2011-12-28 07:35:29Z liu21st $
// 导入别名定义
alias_import(array(
'Model' => MODE_PATH.'Amf/Model.class.php',
'Db' => MODE_PATH.'Phprpc/Db.class.php',
'Debug' => CORE_PATH.'Util/Debug.class.php',
'Session' => CORE_PATH.'Util/Session.class.php',
)
);
|