PublicData.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <?php
  2. namespace App\Tools;
  3. use Hyperf\Snowflake\IdGeneratorInterface;
  4. use Hyperf\Context\ApplicationContext;
  5. class PublicData
  6. {
  7. /**
  8. * ceshi-todo
  9. * 递归查询
  10. * @param $menuItems
  11. * @param $parentId
  12. * @return array
  13. */
  14. public static function buildMenuTree($menuItems, $parentId = 0) {
  15. $tree = [];
  16. foreach ($menuItems as $item) {
  17. if ($item['pid'] == $parentId) {
  18. // 找到子菜单
  19. $children = self::buildMenuTree($menuItems, $item['id']);
  20. // 如果子菜单存在,则添加到当前菜单的children中
  21. if ($children) {
  22. $item['children'] = $children;
  23. }
  24. // 将当前菜单添加到树中
  25. $tree[] = $item;
  26. }
  27. }
  28. return $tree;
  29. }
  30. /**
  31. * 把数组里面的某一个字段作为key
  32. * @param $array
  33. * @param $column
  34. * @return array
  35. */
  36. public static function arrayColumnAsKey($array, $column) {
  37. $result = [];
  38. foreach ($array as $item) {
  39. if (isset($item[$column])) {
  40. $result[$item[$column]] = $item;
  41. } else {
  42. // 如果字段不存在,你可以选择跳过、使用默认值或抛出异常
  43. // 这里我们选择跳过
  44. continue;
  45. }
  46. }
  47. return $result;
  48. }
  49. /**
  50. * 计算两个时间差的天数
  51. * @param $sTime
  52. * @param $eTime
  53. * @return float
  54. */
  55. public static function residueDay($sTime,$eTime)
  56. {
  57. $startTime = strtotime($sTime);
  58. $endTime = strtotime($eTime);
  59. $diffDays = floor(($endTime - $startTime) / (60 * 60 * 24));
  60. return $diffDays;
  61. }
  62. public static function uuid()
  63. {
  64. $container = ApplicationContext::getContainer();
  65. $generator = $container->get(IdGeneratorInterface::class);
  66. return $generator->generate();
  67. }
  68. public static function http_get($url)
  69. {
  70. $oCurl = curl_init();
  71. if (stripos($url, "https://") !== false) {
  72. curl_setopt($oCurl, CURLOPT_SSL_VERIFYPEER, false);
  73. curl_setopt($oCurl, CURLOPT_SSL_VERIFYHOST, false);
  74. curl_setopt($oCurl, CURLOPT_SSLVERSION, 1); //CURL_SSLVERSION_TLSv1
  75. }
  76. curl_setopt($oCurl, CURLOPT_URL, $url);
  77. curl_setopt($oCurl, CURLOPT_RETURNTRANSFER, 1);
  78. $sContent = curl_exec($oCurl);
  79. $aStatus = curl_getinfo($oCurl);
  80. curl_close($oCurl);
  81. if (intval($aStatus["http_code"]) == 200) {
  82. return $sContent;
  83. } else {
  84. return false;
  85. }
  86. }
  87. /**
  88. * POST 请求
  89. * @param string $url
  90. * @param array $param
  91. * @param boolean $post_file 是否文件上传
  92. * @return string content
  93. */
  94. public static function http_post($url, $param, $post_file = false)
  95. {
  96. $oCurl = curl_init();
  97. if (stripos($url, "https://") !== false) {
  98. curl_setopt($oCurl, CURLOPT_SSL_VERIFYPEER, false);
  99. curl_setopt($oCurl, CURLOPT_SSL_VERIFYHOST, false);
  100. curl_setopt($oCurl, CURLOPT_SSLVERSION, 1); //CURL_SSLVERSION_TLSv1
  101. }
  102. if (is_string($param) || $post_file) {
  103. $strPOST = $param;
  104. } else {
  105. $aPOST = [];
  106. foreach ($param as $key => $val) {
  107. $aPOST[] = $key . "=" . urlencode($val);
  108. }
  109. $strPOST = join("&", $aPOST);
  110. }
  111. curl_setopt($oCurl, CURLOPT_URL, $url);
  112. curl_setopt($oCurl, CURLOPT_RETURNTRANSFER, 1);
  113. curl_setopt($oCurl, CURLOPT_POST, true);
  114. curl_setopt($oCurl, CURLOPT_POSTFIELDS, $strPOST);
  115. $sContent = curl_exec($oCurl);
  116. $aStatus = curl_getinfo($oCurl);
  117. curl_close($oCurl);
  118. if (intval($aStatus["http_code"]) == 200) {
  119. return $sContent;
  120. } else {
  121. return false;
  122. }
  123. }
  124. /**
  125. * POST 请求
  126. * @param string $url
  127. * @param array $param
  128. * @param boolean $post_file 是否文件上传
  129. * @return string content
  130. */
  131. public static function http_post_zp($url, $data, $options = [])
  132. {
  133. // 初始化CURL会话
  134. $ch = curl_init($url);
  135. var_dump("参数:",$data);
  136. // 设置CURL选项
  137. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // 将curl_exec()获取的信息以文件流的形式返回,而不是直接输出。
  138. curl_setopt($ch, CURLOPT_HEADER, false); // 将curl_exec()获取的信息以文件流的形式返回,而不是直接输出。
  139. curl_setopt($ch, CURLOPT_POST, true); // 发送一个常规的POST请求。
  140. curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data)); // 要传递的POST数据,这里使用http_build_query将数组转换为URL编码的查询字符串。
  141. $headers = [
  142. 'Authorization: Bearer be1856920c54ac537b530d69bc2eda73.gOO2BMq9NXavzEMq',
  143. 'Content-Type: application/json',
  144. // 'Custom-Header: customHeaderValue'
  145. ];
  146. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
  147. // 如果有额外的CURL选项,则合并它们
  148. if (!empty($options)) {
  149. curl_setopt_array($ch, $options);
  150. }
  151. // 执行CURL会话并获取响应
  152. $response = curl_exec($ch);
  153. // 检查是否有CURL错误
  154. if (curl_errno($ch)) {
  155. $error_msg = curl_error($ch);
  156. curl_close($ch);
  157. throw new Exception("CURL Error: $error_msg");
  158. }
  159. // 获取HTTP状态码
  160. $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  161. // 关闭CURL会话
  162. curl_close($ch);
  163. // 返回一个包含响应和HTTP状态码的数组
  164. $responseBody = $response;
  165. $headerEnd = strpos($response, "\r\n\r\n");
  166. if ($headerEnd !== false) {
  167. // 去除响应头,只保留响应体
  168. $responseBody = substr($response, $headerEnd + 4); // +4 是因为 "\r\n\r\n" 有4个字符
  169. // echo $responseBody; // 输出:This is the response body.
  170. } else {
  171. // 如果没有找到空行,可能响应格式不正确或没有响应头
  172. // echo "No headers found in response.";
  173. }
  174. return [
  175. 'response' => $responseBody,
  176. 'http_code' => $http_code
  177. ];
  178. }
  179. }