Home.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-04-30
  10. // +—————————————————————————————————————————————————————————————————————
  11. class Domain_Home {
  12. public function search($uid,$key,$p) {
  13. $rs = array();
  14. $model = new Model_Home();
  15. $rs = $model->search($uid,$key,$p);
  16. return $rs;
  17. }
  18. public function videoSearch($uid,$key,$p){
  19. $rs = array();
  20. $model = new Model_Home();
  21. $rs = $model->videoSearch($uid,$key,$p);
  22. return $rs;
  23. }
  24. }