helpers.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. <?php
  2. use App\Components\Helpers;
  3. use GuzzleHttp\Client;
  4. define('KB', 1024);
  5. define('MB', 1048576);
  6. define('GB', 1073741824);
  7. define('TB', 1099511627776);
  8. define('PB', 1125899906842624);
  9. define('Minute', 60);
  10. define('Hour', 3600);
  11. define('Day', 86400);
  12. define('Mbps', 125000);
  13. // base64加密(处理URL)
  14. if(!function_exists('base64url_encode')){
  15. function base64url_encode($data) {
  16. return strtr(base64_encode($data), ['+' => '-', '/' => '_', '=' => '']);
  17. }
  18. }
  19. // base64解密(处理URL)
  20. if(!function_exists('base64url_decode')){
  21. function base64url_decode($data) {
  22. return base64_decode(strtr($data, '-_', '+/'));
  23. }
  24. }
  25. // 根据流量值自动转换单位输出
  26. if(!function_exists('flowAutoShow')){
  27. function flowAutoShow($value) {
  28. $value = abs($value);
  29. if($value >= PB){
  30. return round($value / PB, 2)."PB";
  31. }
  32. if($value >= TB){
  33. return round($value / TB, 2)."TB";
  34. }
  35. if($value >= GB){
  36. return round($value / GB, 2)."GB";
  37. }
  38. if($value >= MB){
  39. return round($value / MB, 2)."MB";
  40. }
  41. if($value >= KB){
  42. return round($value / KB, 2)."KB";
  43. }
  44. return round($value, 2)."B";
  45. }
  46. }
  47. if(!function_exists('toMB')){
  48. function toMB($traffic) {
  49. return $traffic * MB;
  50. }
  51. }
  52. if(!function_exists('toGB')){
  53. function toGB($traffic) {
  54. return $traffic * GB;
  55. }
  56. }
  57. if(!function_exists('flowToGB')){
  58. function flowToGB($traffic) {
  59. return $traffic / GB;
  60. }
  61. }
  62. // 文件大小转换
  63. if(!function_exists('formatBytes')){
  64. function formatBytes($bytes, $precision = 2) {
  65. $units = ['B', 'KB', 'MB', 'GB', 'TB'];
  66. $bytes = max($bytes, 0);
  67. $pow = floor(($bytes? log($bytes) : 0) / log(KB));
  68. $pow = min($pow, count($units) - 1);
  69. $bytes /= KB ** $pow;
  70. return round($bytes, $precision).' '.$units[$pow];
  71. }
  72. }
  73. // 秒转时间
  74. if(!function_exists('seconds2time')){
  75. function seconds2time($seconds) {
  76. $day = floor($seconds / Day);
  77. $hour = floor(($seconds % Day) / Hour);
  78. $minute = floor((($seconds % Day) % Hour) / Minute);
  79. if($day > 0){
  80. return $day.'天'.$hour.'小时'.$minute.'分';
  81. }
  82. if($hour != 0){
  83. return $hour.'小时'.$minute.'分';
  84. }
  85. return $minute.'分';
  86. }
  87. }
  88. // 获取访客真实IP
  89. if(!function_exists('getClientIP')){
  90. function getClientIP() {
  91. /*
  92. * 访问时用localhost访问的,读出来的是“::1”是正常情况
  93. * ::1说明开启了IPv6支持,这是IPv6下的本地回环地址的表示
  94. * 使用IPv4地址访问或者关闭IPv6支持都可以不显示这个
  95. */
  96. if(isset($_SERVER)){
  97. if(isset($_SERVER['HTTP_CF_CONNECTING_IP'])){
  98. $_SERVER['REMOTE_ADDR'] = $_SERVER['HTTP_CF_CONNECTING_IP'];
  99. $ip = $_SERVER['REMOTE_ADDR'];
  100. }elseif(isset($_SERVER['HTTP_X_FORWARDED_FOR'])){
  101. $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
  102. }elseif(isset($_SERVER['HTTP_CLIENT_IP'])){
  103. $ip = $_SERVER['HTTP_CLIENT_IP'];
  104. }elseif(isset($_SERVER['REMOTE_ADDR'])){
  105. $ip = $_SERVER['REMOTE_ADDR'];
  106. }else{
  107. $ip = 'unknown';
  108. }
  109. }elseif(getenv('HTTP_X_FORWARDED_FOR')){
  110. $ip = getenv('HTTP_X_FORWARDED_FOR');
  111. }elseif(getenv('HTTP_CLIENT_IP')){
  112. $ip = getenv('HTTP_CLIENT_IP');
  113. }else{
  114. $ip = getenv('REMOTE_ADDR');
  115. }
  116. if(trim($ip) === '::1'){
  117. $ip = '127.0.0.1';
  118. }
  119. return $ip;
  120. }
  121. }
  122. // 获取IPv6信息
  123. if(!function_exists('getIPInfo')){
  124. function getIPInfo($ip) {
  125. $request = (new Client(['timeout' => 15]))->get('https://api.ip.sb/geoip/'.$ip);
  126. $message = json_decode($request->getBody(), true);
  127. if($request->getStatusCode() == 200){
  128. return $message;
  129. }
  130. Log::error('解析IPv6异常:'.$ip.PHP_EOL.var_export($request, true));
  131. return false;
  132. }
  133. }
  134. // 过滤emoji表情
  135. if(!function_exists('filterEmoji')){
  136. function filterEmoji($str) {
  137. $str = preg_replace_callback('/./u', static function(array $match) {
  138. return strlen($match[0]) >= 4? '' : $match[0];
  139. }, $str);
  140. return $str;
  141. }
  142. }
  143. // 获取系统设置
  144. if(!function_exists('sysConfig')){
  145. function sysConfig($name) {
  146. return Helpers::sysConfig()[$name];
  147. }
  148. }