123456789101112131415161718192021222324252627282930313233343536 |
- <?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_Home {
- public function search($uid,$key,$p) {
- $rs = array();
- $model = new Model_Home();
- $rs = $model->search($uid,$key,$p);
-
- return $rs;
- }
-
- public function videoSearch($uid,$key,$p){
- $rs = array();
- $model = new Model_Home();
- $rs = $model->videoSearch($uid,$key,$p);
-
- return $rs;
- }
-
- }
|