helpers.php 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. <?php
  2. use Illuminate\Http\Request;
  3. use Illuminate\Support\Arr;
  4. use Illuminate\Support\Facades\Session;
  5. use Illuminate\Support\Facades\Cookie;
  6. use Illuminate\Support\Str;
  7. if (! function_exists('user_admin_config')) {
  8. function user_admin_config($key = null, $value = null)
  9. {
  10. // 获取 session 实例
  11. $session = session();
  12. // 从 session 中获取 'admin.config',如果没有则使用默认的 'admin' 配置
  13. $config = $session->get('admin.config', function () {
  14. $adminConfig = config('admin');
  15. $adminConfig['lang'] = config('app.locale');
  16. return $adminConfig;
  17. });
  18. // 如果 $key 是数组,表示我们需要批量设置配置项
  19. if (is_array($key)) {
  20. foreach ($key as $k => $v) {
  21. Arr::set($config, $k, $v); // 在配置数组中设置每个键值对
  22. }
  23. $session->put('admin.config', $config); // 将更新后的配置保存到 session 中
  24. return;
  25. }
  26. // 如果没有传递具体的 key,返回整个配置数组
  27. if (is_null($key)) {
  28. return $config;
  29. }
  30. // 获取指定的配置项,如果不存在则返回默认值 $value
  31. return Arr::get($config, $key, $value);
  32. }
  33. }
  34. if (! function_exists('switchLanguage')) {
  35. function switchLanguage($lang)
  36. {
  37. // 验证是否是支持的语言
  38. if (!in_array($lang, ['en', 'zh_CN', 'zh_TW'])) {
  39. return false;
  40. }
  41. Cookie::queue('lang', $lang, 60 * 24 * 30); // 保存 30 天
  42. // 动态修改 app.locale 配置
  43. config(['app.locale' => $lang]);
  44. return true;
  45. }
  46. }
  47. if (!function_exists('getDistributor')) {
  48. /**
  49. * 获取会话中的 distributor 值
  50. *
  51. * @return mixed
  52. */
  53. function getDistributor() {
  54. return Session::get('distributor');
  55. }
  56. }
  57. if (!function_exists('getDistributorDomain')) {
  58. function getDistributorDomain()
  59. {
  60. $domain = '';
  61. $row = getDistributor();
  62. if ($row) {
  63. if ($row['domain_type'] == 0) {
  64. $domain = 'http://'.$row['secondary_domain'];
  65. } else {
  66. $domain = 'http://'.$row['custom_domain'];
  67. }
  68. }
  69. if (env('DIST_SITE_PORT') != 80) {
  70. $domain .= ':' . env('DIST_SITE_PORT');
  71. }
  72. return $domain;
  73. }
  74. }
  75. if (!function_exists('getDistributorId')) {
  76. /**
  77. * 获取会话中的 distributor 的 ID
  78. *
  79. * @return mixed
  80. */
  81. function getDistributorId() {
  82. $distributor = Session::get('distributor');
  83. return $distributor ? $distributor['id'] : null; // 假设 distributor 是一个数组,包含 id
  84. }
  85. }
  86. /*
  87. * 使用session记录与显示临时变量,变量名在config/dictionary.php中的temp_value
  88. */
  89. if (!function_exists('setTempValue')) {
  90. function setTempValue($key, $value) {
  91. $arr = config('dictionary.temp_value');
  92. if (isset($arr[$key])) {
  93. $newKey = '_temp_value_'.$key;//加前缀
  94. Session::put($newKey, $value);
  95. return true;
  96. }
  97. return false;
  98. }
  99. }
  100. /*
  101. * 拿临时变量
  102. */
  103. if (!function_exists('getTempValue')) {
  104. function getTempValue($key) {
  105. $arr = config('dictionary.temp_value');
  106. if (isset($arr[$key])) {
  107. $newKey = '_temp_value_'.$key; //加前缀
  108. $value = Session::get($newKey);
  109. return $value === null ? $arr[$key] : $value;
  110. }
  111. return false;
  112. }
  113. }
  114. if (!function_exists('getSiteDomain')) {
  115. //得到分销商域名
  116. function getSiteDomain($hasHttp = true) {
  117. $distributor = Session::get('distributor');
  118. $domain = $distributor['domain_type'] == 0 ? $distributor['secondary_domain'] : $domain = $distributor['custom_domain'];
  119. if ($hasHttp) {
  120. $domain = 'https://'.$domain;
  121. }
  122. return $domain;
  123. }
  124. }
  125. //通过parent_id构建树形结构
  126. if (!function_exists('buildTree')) {
  127. function buildTree(array $elements, $parentId = 0)
  128. {
  129. $branch = [];
  130. foreach ($elements as $element) {
  131. if ($element['parent_id'] == $parentId) {
  132. $children = buildTree($elements, $element['id']);
  133. if ($children) {
  134. $element['children'] = $children;
  135. }
  136. $branch[] = $element;
  137. }
  138. }
  139. return $branch;
  140. }
  141. }
  142. // 展平树形结构
  143. if (!function_exists('flattenTree')) {
  144. function flattenTree(array $tree, array &$result = [], $level = 0)
  145. {
  146. foreach ($tree as $node) {
  147. // 复制节点数据,但不包括子节点,并添加 level 字段
  148. $flattenedNode = array_diff_key($node, ['children' => null]);
  149. $flattenedNode['level'] = $level;
  150. $flattenedNode['has_children'] = isset($node['children']) && is_array($node['children']);
  151. $result[] = $flattenedNode;
  152. // 如果有子节点,递归处理子节点,并将 level 增加 1
  153. if (isset($node['children']) && is_array($node['children'])) {
  154. flattenTree($node['children'], $result, $level + 1);
  155. }
  156. }
  157. return $result;
  158. }
  159. }
  160. if (!function_exists('uniqueCode')) {
  161. function uniqueCode($prefix = '')
  162. {
  163. //$uniqueId = strtolower(Str::random($length));
  164. $uniqueId = uniqid($prefix);
  165. return $uniqueId;
  166. }
  167. }
  168. if (!function_exists('generateVersionNumber')) {
  169. /*
  170. * 12位版本号
  171. */
  172. function generateVersionNumber()
  173. {
  174. // 获取当前的年、月、日
  175. $year = date('y'); // 年份的最后两位
  176. $month = date('m'); // 月份,两位数字
  177. $day = date('d'); // 日期,两位数字
  178. // 获取当前的毫秒级时间戳
  179. $microtime = microtime(true);
  180. $milliseconds = round(($microtime - floor($microtime)) * 1000);
  181. // 将毫秒级时间戳转换为 6 位数字
  182. $milliseconds = str_pad($milliseconds, 3, '0', STR_PAD_LEFT);
  183. // 获取当前的时间戳(秒级)
  184. $timestamp = time();
  185. // 将时间戳转换为 6 位数字(如果需要更精确的时间戳,可以使用毫秒级时间戳)
  186. $timestamp = str_pad($timestamp % 1000000, 6, '0', STR_PAD_LEFT);
  187. // 组合成 12 位版本号
  188. $versionNumber = $year . $month . $day. $timestamp. $milliseconds ;
  189. return $versionNumber;
  190. }
  191. }
  192. //判断是否为json
  193. if (!function_exists('isValidJson')) {
  194. function isValidJson($string) {
  195. json_decode($string);
  196. return (json_last_error() === JSON_ERROR_NONE);
  197. }
  198. }
  199. //判断是否为纯域名
  200. if (!function_exists('isDomainOnly')) {
  201. function isDomainOnly($string) {
  202. // 正则表达式:匹配不带协议或路径的纯域名
  203. $pattern = '/^(?!:\/\/)([a-zA-Z0-9-]+\.)+[a-zA-Z]{2,}$/';
  204. return preg_match($pattern, $string) === 1;
  205. }
  206. }
  207. //生成slug
  208. if (!function_exists('generateSlug')) {
  209. function generateSlug($title)
  210. {
  211. // 1. 将所有字符转换为小写
  212. $slug = strtolower($title);
  213. // 2. 将空格替换为短横线(-)
  214. $slug = str_replace(' ', '-', $slug);
  215. // 3. 将不合法的字符(!@#$%^&*?=+)替换为空
  216. $slug = preg_replace('/[!@#$%^&*()?=+]+/', '', $slug);
  217. // 4. 清理多余的短横线
  218. $slug = preg_replace('/-+/', '-', $slug);
  219. // 5. 去除开头和结尾的短横线
  220. $slug = trim($slug, '-');
  221. return $slug;
  222. }
  223. }
  224. //生成随机小写英文组成的字符串
  225. if (!function_exists('generateRandomString')) {
  226. function generateRandomString($length = 3) {
  227. $characters = 'abcdefghijklmnopqrstuvwxyz';
  228. $charactersLength = strlen($characters);
  229. $randomString = '';
  230. for ($i = 0; $i < $length; $i++) {
  231. $randomString .= $characters[rand(0, $charactersLength - 1)];
  232. }
  233. return $randomString;
  234. }
  235. }
  236. //翻译数组
  237. if (!function_exists('admin_trans_array')) {
  238. function admin_trans_array($array) {
  239. array_walk($array, function(&$value, $key) {
  240. $value = admin_trans_label($value);
  241. });
  242. return $array;
  243. }
  244. }
  245. //curl get
  246. if (!function_exists('curlGet')) {
  247. function curlGet($url,$timeout=10) {
  248. $ch = curl_init();
  249. curl_setopt($ch, CURLOPT_URL, $url);
  250. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 3);
  251. curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
  252. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  253. $response = curl_exec($ch);
  254. if ($response === false) {
  255. return array(
  256. 'error' => curl_error($ch),
  257. 'http_code' => null
  258. );
  259. } else {
  260. $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  261. return array(
  262. 'response' => $response,
  263. 'http_code' => $http_code
  264. );
  265. }
  266. curl_close($ch);
  267. }
  268. }
  269. /*
  270. * 截取字符函数
  271. * $string 要截取的字符串
  272. * $length 截取长度
  273. * $append 后缀
  274. */
  275. if (!function_exists('truncateString')) {
  276. function truncateString($string, $length = 30, $append = '') {
  277. // 检查字符串长度是否超过指定长度
  278. if (mb_strlen($string, 'UTF-8') > $length) {
  279. // 截取字符串
  280. $truncated = mb_substr($string, 0, $length, 'UTF-8');
  281. // 添加省略号
  282. return $truncated . $append;
  283. }
  284. // 如果字符串长度小于或等于指定长度,直接返回原字符串
  285. return $string;
  286. }
  287. }