You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HomeService.php 1.0 KiB

3 years ago
12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. *
  4. * ============================================================================
  5. * * 版权所有 蜘蛛出行 * *
  6. * 网站地址: http://www.zhizhuchuxing.com
  7. * ----------------------------------------------------------------------------
  8. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
  9. * 使用;不允许对程序代码以任何形式任何目的的再发布。
  10. * ============================================================================
  11. * Author By: 倪宗锋
  12. * PhpStorm HomeService.php
  13. * Create By 2016/11/7 16:08 $
  14. */
  15. namespace Home\Service;
  16. use Home\Model\OperaProduct;
  17. use Util\Util\Util;
  18. class HomeService
  19. {
  20. /**
  21. * Function Description:获取首页信息
  22. * Function Name: getHomeInfo
  23. *
  24. * @return array
  25. *
  26. * @author 倪宗锋
  27. */
  28. public function getHomeInfo()
  29. {
  30. $pro = new OperaProduct();
  31. $info = $pro->getList();
  32. return Util::returnArrSu('','',$info);
  33. }
  34. }