helpers.php 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. <?php
  2. // 生成SS密码
  3. if (!function_exists('makeRandStr')) {
  4. function makeRandStr($length = 6, $isNumbers = false)
  5. {
  6. // 密码字符集,可任意添加你需要的字符
  7. if (!$isNumbers) {
  8. $chars = 'abcdefghijkmnpqrstuvwxyzABCDEFGHJKMNPQRSTUVWXYZ23456789';
  9. } else {
  10. $chars = '0123456789';
  11. }
  12. $char = '';
  13. for ($i = 0; $i < $length; $i++) {
  14. $char .= $chars[mt_rand(0, strlen($chars) - 1)];
  15. }
  16. return $char;
  17. }
  18. }
  19. // base64加密(处理URL)
  20. if (!function_exists('base64url_encode')) {
  21. function base64url_encode($data)
  22. {
  23. return strtr(base64_encode($data), ['+' => '-', '/' => '_', '=' => '']);
  24. }
  25. }
  26. // base64解密(处理URL)
  27. if (!function_exists('base64url_decode')) {
  28. function base64url_decode($data)
  29. {
  30. return base64_decode(strtr($data, '-_', '+/'));
  31. }
  32. }
  33. // 根据流量值自动转换单位输出
  34. if (!function_exists('flowAutoShow')) {
  35. function flowAutoShow($value = 0)
  36. {
  37. $kb = 1024;
  38. $mb = 1048576;
  39. $gb = 1073741824;
  40. $tb = $gb * 1024;
  41. $pb = $tb * 1024;
  42. if (abs($value) >= $pb) {
  43. return round($value / $pb, 2) . "PB";
  44. } elseif (abs($value) >= $tb) {
  45. return round($value / $tb, 2) . "TB";
  46. } elseif (abs($value) >= $gb) {
  47. return round($value / $gb, 2) . "GB";
  48. } elseif (abs($value) >= $mb) {
  49. return round($value / $mb, 2) . "MB";
  50. } elseif (abs($value) >= $kb) {
  51. return round($value / $kb, 2) . "KB";
  52. } else {
  53. return round($value, 2) . "B";
  54. }
  55. }
  56. }
  57. if (!function_exists('toMB')) {
  58. function toMB($traffic)
  59. {
  60. $mb = 1048576;
  61. return $traffic * $mb;
  62. }
  63. }
  64. if (!function_exists('toGB')) {
  65. function toGB($traffic)
  66. {
  67. $gb = 1048576 * 1024;
  68. return $traffic * $gb;
  69. }
  70. }
  71. if (!function_exists('flowToGB')) {
  72. function flowToGB($traffic)
  73. {
  74. $gb = 1048576 * 1024;
  75. return $traffic / $gb;
  76. }
  77. }
  78. // 文件大小转换
  79. if (!function_exists('formatBytes')) {
  80. function formatBytes($bytes, $precision = 2)
  81. {
  82. $units = ['B', 'KB', 'MB', 'GB', 'TB'];
  83. $bytes = max($bytes, 0);
  84. $pow = floor(($bytes ? log($bytes) : 0) / log(1024));
  85. $pow = min($pow, count($units) - 1);
  86. $bytes /= pow(1024, $pow);
  87. return round($bytes, $precision) . ' ' . $units[$pow];
  88. }
  89. }
  90. // 秒转时间
  91. if (!function_exists('seconds2time')) {
  92. function seconds2time($seconds)
  93. {
  94. $day = floor($seconds / (3600 * 24));
  95. $hour = floor(($seconds % (3600 * 24)) / 3600);
  96. $minute = floor((($seconds % (3600 * 24)) % 3600) / 60);
  97. if ($day > 0) {
  98. return $day . '天' . $hour . '小时' . $minute . '分';
  99. } else {
  100. if ($hour != 0) {
  101. return $hour . '小时' . $minute . '分';
  102. } else {
  103. return $minute . '分';
  104. }
  105. }
  106. }
  107. }
  108. // 获取访客真实IP
  109. if (!function_exists('getClientIP')) {
  110. function getClientIP()
  111. {
  112. /*
  113. * 访问时用localhost访问的,读出来的是“::1”是正常情况
  114. * ::1说明开启了IPv6支持,这是IPv6下的本地回环地址的表示
  115. * 使用IPv4地址访问或者关闭IPv6支持都可以不显示这个
  116. */
  117. if (isset($_SERVER)) {
  118. if (isset($_SERVER['HTTP_CF_CONNECTING_IP'])) {
  119. $_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_CF_CONNECTING_IP'];
  120. $ip = $_SERVER['REMOTE_ADDR'];
  121. } elseif (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
  122. $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
  123. } elseif (isset($_SERVER['HTTP_CLIENT_IP'])) {
  124. $ip = $_SERVER['HTTP_CLIENT_IP'];
  125. } elseif (isset($_SERVER['REMOTE_ADDR'])) {
  126. $ip = $_SERVER['REMOTE_ADDR'];
  127. } else {
  128. $ip = 'unknown';
  129. }
  130. } else {
  131. // 绕过CDN获取真实访客IP
  132. if (getenv('HTTP_X_FORWARDED_FOR')) {
  133. $ip = getenv('HTTP_X_FORWARDED_FOR');
  134. } elseif (getenv('HTTP_CLIENT_IP')) {
  135. $ip = getenv('HTTP_CLIENT_IP');
  136. } else {
  137. $ip = getenv('REMOTE_ADDR');
  138. }
  139. }
  140. if (trim($ip) == '::1') {
  141. $ip = '127.0.0.1';
  142. }
  143. // 多IP容错判断
  144. if (false !== strpos($ip, ',')) {
  145. \Log::info("检测到用户通过多级代理访问,请求IP串:" . $ip);
  146. $ipArr = explode(',', $ip);
  147. return $ipArr[0]; // 第一个是真实IP,后面都是代理IP
  148. }
  149. return $ip;
  150. }
  151. }
  152. // 获取IPv6信息
  153. if (!function_exists('getIPv6')) {
  154. /*
  155. * {
  156. * "longitude": 105,
  157. * "latitude": 35,
  158. * "area_code": "0",
  159. * "dma_code": "0",
  160. * "organization": "AS23910 China Next Generation Internet CERNET2",
  161. * "country": "China",
  162. * "ip": "2001:da8:202:10::36",
  163. * "country_code3": "CHN",
  164. * "continent_code": "AS",
  165. * "country_code": "CN"
  166. * }
  167. *
  168. * {
  169. * "longitude": 105,
  170. * "latitude": 35,
  171. * "area_code": "0",
  172. * "dma_code": "0",
  173. * "organization": "AS9808 Guangdong Mobile Communication Co.Ltd.",
  174. * "country": "China",
  175. * "ip": "2409:8a74:487:1f30:5178:e5a5:1f36:3525",
  176. * "country_code3": "CHN",
  177. * "continent_code": "AS",
  178. * "country_code": "CN"
  179. * }
  180. */
  181. function getIPv6($ip)
  182. {
  183. $url = 'https://api.ip.sb/geoip/' . $ip;
  184. try {
  185. $ch = curl_init();
  186. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  187. curl_setopt($ch, CURLOPT_TIMEOUT, 10);
  188. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  189. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  190. curl_setopt($ch, CURLOPT_URL, $url);
  191. curl_setopt($ch, CURLOPT_POST, 0);
  192. $result = curl_exec($ch);
  193. curl_close($ch);
  194. $result = json_decode($result, true);
  195. if (!is_array($result) || isset($result['code'])) {
  196. throw new Exception('解析IPv6异常:' . $ip);
  197. }
  198. return $result;
  199. } catch (\Exception $e) {
  200. \Log::error($e->getMessage());
  201. return [];
  202. }
  203. }
  204. }
  205. // 随机UUID
  206. if (!function_exists('createGuid')) {
  207. function createGuid()
  208. {
  209. mt_srand((double)microtime() * 10000);
  210. $charid = strtoupper(md5(uniqid(rand(), true)));
  211. $hyphen = chr(45);
  212. $uuid = substr($charid, 0, 8) . $hyphen
  213. . substr($charid, 8, 4) . $hyphen
  214. . substr($charid, 12, 4) . $hyphen
  215. . substr($charid, 16, 4) . $hyphen
  216. . substr($charid, 20, 12);
  217. return strtolower($uuid);
  218. }
  219. }
  220. // 过滤emoji表情
  221. if (!function_exists('filterEmoji')) {
  222. function filterEmoji($str)
  223. {
  224. $str = preg_replace_callback('/./u',
  225. function (array $match) {
  226. return strlen($match[0]) >= 4 ? '' : $match[0];
  227. },
  228. $str);
  229. return $str;
  230. }
  231. }
  232. // 验证手机号是否正确
  233. if (!function_exists('isMobile')) {
  234. function isMobile($mobile)
  235. {
  236. if (!is_numeric($mobile)) {
  237. return false;
  238. }
  239. return preg_match('#^13[\d]{9}$|^14[5,7]{1}\d{8}$|^15[^4]{1}\d{8}$|^17[0,6,7,8]{1}\d{8}$|^18[\d]{9}$#', $mobile) ? true : false;
  240. }
  241. }
  242. // 网速速率转换
  243. if (!function_exists('formatNetSpeed')) {
  244. function formatNetSpeed($value)
  245. {
  246. if ($value < 0) {
  247. return '';
  248. }
  249. if ($value == 0) {
  250. return '不限速';
  251. }
  252. $kb = 1024;
  253. $mb = 1024 * 1024;
  254. if (abs($value) >= $mb) {
  255. $speed = round($value / $mb, 2) * 8;
  256. if (abs($speed / 1024) >= 1) {
  257. return round($speed / 1024, 2) . "Gbps";
  258. } else {
  259. return $speed . "Mbps";
  260. }
  261. } else {
  262. return round($value / $kb, 2) * 8 / 1024 . "Mbps";
  263. }
  264. }
  265. }