Default.php 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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-02-17
  10. // +—————————————————————————————————————————————————————————————————————
  11. /**
  12. * 默认接口服务类
  13. *
  14. * @author: dogstar <chanzonghuang@gmail.com> 2014-10-04
  15. */
  16. class Api_Default extends PhalApi_Api {
  17. public function getRules() {
  18. return array(
  19. );
  20. }
  21. /**
  22. * 默认接口服务
  23. * @return string title 标题
  24. * @return string content 内容
  25. * @return string version 版本,格式:X.X.X
  26. * @return int time 当前时间戳
  27. */
  28. private function index() {
  29. }
  30. private function test() {
  31. $stream=time();
  32. $push=PrivateKeyA('rtmp',$stream,1);
  33. $pull=PrivateKeyA('rtmp',$stream,0);
  34. echo $push;
  35. echo '<br>';
  36. echo $pull;
  37. exit;
  38. // $start='21800';
  39. // $end='21870';
  40. // $nowtime=1541742938;
  41. // for($i=$start;$i<=$end;$i++){
  42. // $nowtime--;
  43. // $stream=$i.'_'.$nowtime;
  44. // $data=[
  45. // "uid"=>$i,
  46. // "ishot"=>1,
  47. // "isrecommend"=>1,
  48. // "showid"=>$nowtime,
  49. // "starttime"=>$nowtime,
  50. // "title"=>'',
  51. // "province"=>'',
  52. // "city"=>'好像在火星',
  53. // "stream"=>$stream,
  54. // "thumb"=>'',
  55. // "pull"=>'http://falsevideo.yunbaozb.com/4.mp4',
  56. // "lng"=>'',
  57. // "lat"=>'',
  58. // "type"=>'0',
  59. // "type_val"=>'0',
  60. // "isvideo"=>1,
  61. // "islive"=>1,
  62. // "anyway"=>'0',
  63. // "liveclassid"=>'1',
  64. // ];
  65. // DI()->notorm->live->insert($data);
  66. // }
  67. }
  68. }