common.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. /**
  3. * @param string $address 地址
  4. * @return array
  5. */
  6. /**
  7. * 秒转换为天
  8. */
  9. function get_stay_time($remain_time, $is_hour = 1, $is_minutes = 1)
  10. {
  11. $day = floor($remain_time / (3600*24));
  12. $day = $day > 0 ? $day.'天' : '';
  13. $hour = floor(($remain_time % (3600*24)) / 3600);
  14. $hour = $hour > 0 ? $hour.'小时' : '';
  15. if($is_hour && $is_minutes) {
  16. $minutes = floor((($remain_time % (3600*24)) % 3600) / 60);
  17. $minutes = $minutes > 0 ? $minutes.'分钟' : '';
  18. return $day.$hour.$minutes;
  19. }
  20. if($hour) {
  21. return $day.$hour;
  22. }
  23. return $day;
  24. }
  25. /**
  26. * get请求
  27. * @param $url
  28. * @param string $msg
  29. * @return mixed
  30. */
  31. function requestGet($url , $msg = ''){
  32. // 1. 初始化一个cURL会话
  33. $ch = curl_init();
  34. //设置选项,包括URL
  35. curl_setopt($ch, CURLOPT_URL, $url);
  36. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  37. curl_setopt($ch, CURLOPT_HEADER, 0);
  38. //执行并获取HTML文档内容
  39. $response = curl_exec($ch);
  40. // 4. 释放cURL句柄,关闭一个cURL会话
  41. curl_close($ch);
  42. return $response;
  43. }
  44. //获取全图片地址 $image_data
  45. function image_path($image_data){
  46. if(empty($image_data)){
  47. return $image_data;
  48. }
  49. if (strpos($image_data,'|')!==false){
  50. $image_res = explode('|',$image_data);
  51. }elseif(strpos($image_data,',')!==false){
  52. $image_res = explode(',',$image_data);
  53. }else{
  54. $image_res = array($image_data);
  55. }
  56. return $image_res;
  57. }
  58. //通过user_id判断是用户还是媒体(返回1:用户 2:媒体)
  59. function user_type($user_id){
  60. $type = 1;
  61. if($user_id < 500){
  62. $type = 2;
  63. }
  64. return $type;
  65. }