helpers.php 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  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. $result[] = $flattenedNode;
  151. // 如果有子节点,递归处理子节点,并将 level 增加 1
  152. if (isset($node['children']) && is_array($node['children'])) {
  153. flattenTree($node['children'], $result, $level + 1);
  154. }
  155. }
  156. return $result;
  157. }
  158. }
  159. if (!function_exists('uniqueCode')) {
  160. function uniqueCode($prefix = '')
  161. {
  162. //$uniqueId = strtolower(Str::random($length));
  163. $uniqueId = uniqid($prefix);
  164. return $uniqueId;
  165. }
  166. }
  167. if (!function_exists('generateVersionNumber')) {
  168. /*
  169. * 12位版本号
  170. */
  171. function generateVersionNumber()
  172. {
  173. // 获取当前的年、月、日
  174. $year = date('y'); // 年份的最后两位
  175. $month = date('m'); // 月份,两位数字
  176. $day = date('d'); // 日期,两位数字
  177. // 获取当前的毫秒级时间戳
  178. $microtime = microtime(true);
  179. $milliseconds = round(($microtime - floor($microtime)) * 1000);
  180. // 将毫秒级时间戳转换为 6 位数字
  181. $milliseconds = str_pad($milliseconds, 3, '0', STR_PAD_LEFT);
  182. // 获取当前的时间戳(秒级)
  183. $timestamp = time();
  184. // 将时间戳转换为 6 位数字(如果需要更精确的时间戳,可以使用毫秒级时间戳)
  185. $timestamp = str_pad($timestamp % 1000000, 6, '0', STR_PAD_LEFT);
  186. // 组合成 12 位版本号
  187. $versionNumber = $year . $month . $day. $timestamp. $milliseconds ;
  188. return $versionNumber;
  189. }
  190. }
  191. //判断是否为json
  192. if (!function_exists('isValidJson')) {
  193. function isValidJson($string) {
  194. json_decode($string);
  195. return (json_last_error() === JSON_ERROR_NONE);
  196. }
  197. }
  198. //判断是否为纯域名
  199. if (!function_exists('isDomainOnly')) {
  200. function isDomainOnly($string) {
  201. // 正则表达式:匹配不带协议或路径的纯域名
  202. $pattern = '/^(?!:\/\/)([a-zA-Z0-9-]+\.)+[a-zA-Z]{2,}$/';
  203. return preg_match($pattern, $string) === 1;
  204. }
  205. }
  206. //生成slug
  207. if (!function_exists('generateSlug')) {
  208. function generateSlug($title)
  209. {
  210. // 1. 将所有字符转换为小写
  211. $slug = strtolower($title);
  212. // 2. 将空格替换为短横线(-)
  213. $slug = str_replace(' ', '-', $slug);
  214. // 3. 将不合法的字符(!@#$%^&*?=+)替换为空
  215. $slug = preg_replace('/[!@#$%^&*()?=+]+/', '', $slug);
  216. // 4. 清理多余的短横线
  217. $slug = preg_replace('/-+/', '-', $slug);
  218. // 5. 去除开头和结尾的短横线
  219. $slug = trim($slug, '-');
  220. return $slug;
  221. }
  222. }
  223. //生成随机小写英文组成的字符串
  224. if (!function_exists('generateRandomString')) {
  225. function generateRandomString($length = 3) {
  226. $characters = 'abcdefghijklmnopqrstuvwxyz';
  227. $charactersLength = strlen($characters);
  228. $randomString = '';
  229. for ($i = 0; $i < $length; $i++) {
  230. $randomString .= $characters[rand(0, $charactersLength - 1)];
  231. }
  232. return $randomString;
  233. }
  234. }
  235. //翻译数组
  236. if (!function_exists('admin_trans_array')) {
  237. function admin_trans_array($array) {
  238. array_walk($array, function(&$value, $key) {
  239. $value = admin_trans_label($value);
  240. });
  241. return $array;
  242. }
  243. }
  244. //curl get
  245. if (!function_exists('curlGet')) {
  246. function curlGet($url,$timeout=10) {
  247. $ch = curl_init();
  248. curl_setopt($ch, CURLOPT_URL, $url);
  249. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 3);
  250. curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
  251. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  252. $response = curl_exec($ch);
  253. if ($response === false) {
  254. return array(
  255. 'error' => curl_error($ch),
  256. 'http_code' => null
  257. );
  258. } else {
  259. $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  260. return array(
  261. 'response' => $response,
  262. 'http_code' => $http_code
  263. );
  264. }
  265. curl_close($ch);
  266. }
  267. }
  268. /*
  269. * 截取字符函数
  270. * $string 要截取的字符串
  271. * $length 截取长度
  272. * $append 后缀
  273. */
  274. if (!function_exists('truncateString')) {
  275. function truncateString($string, $length = 30, $append = '') {
  276. // 检查字符串长度是否超过指定长度
  277. if (mb_strlen($string, 'UTF-8') > $length) {
  278. // 截取字符串
  279. $truncated = mb_substr($string, 0, $length, 'UTF-8');
  280. // 添加省略号
  281. return $truncated . $append;
  282. }
  283. // 如果字符串长度小于或等于指定长度,直接返回原字符串
  284. return $string;
  285. }
  286. }