| 12345678910111213141516171819202122232425 |
- <?php
- // +—————————————————————————————————————————————————————————————————————
- // | Created by Yunbao
- // +—————————————————————————————————————————————————————————————————————
- // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
- // +—————————————————————————————————————————————————————————————————————
- // | Author: https://gitee.com/yunbaokeji
- // +—————————————————————————————————————————————————————————————————————
- // | Date: 2022-04-30
- // +—————————————————————————————————————————————————————————————————————
- class Domain_Login {
- public function userLogin($user_login,$source,$mobileid) {
- $rs = array();
- $model = new Model_Login();
- $rs = $model->userLogin($user_login,$source,$mobileid);
- return $rs;
- }
- }
|