conn.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. <?php
  2. // 设置编码
  3. session_start();
  4. header('Content-Type: text/html; charset=utf-8');
  5. header('Cache-Control: no-cache');
  6. date_default_timezone_set('Asia/Shanghai');
  7. // 数据库连接
  8. $conn = new mysqli("127.0.0.1", "crm", "Qweasdzxc", "crm_new");
  9. if ($conn->connect_error) {
  10. die("Connection failed: " . $conn->connect_error);
  11. }
  12. $conn->set_charset("utf8mb4");
  13. // 检查登录
  14. function checkLogin() {
  15. if (empty($_SESSION['employee_id'])) {
  16. echo "<script>top.location.href='index.php'</script>";
  17. exit;
  18. }
  19. }
  20. function checkAdmin() {
  21. if ((empty($_SESSION['em_permission_role_id'])||($_SESSION['em_permission_role_id']!=1))) {
  22. die("No permission , Please contact the administrator");
  23. exit;
  24. }
  25. }
  26. function checkPermissionDie(...$permission_role_ids) {
  27. // 检查会话中是否设置权限ID
  28. if (empty($_SESSION['em_permission_role_id'])) {
  29. die("No permission , Please contact the administrator");
  30. }
  31. // 如果是超级管理员(ID=1),直接返回true
  32. if ($_SESSION['em_permission_role_id'] == 1) {
  33. // return true;
  34. }
  35. // 检查当前角色ID是否在允许的角色ID中
  36. if(!in_array($_SESSION['em_permission_role_id'], $permission_role_ids))
  37. {
  38. die("No permission , Please contact the administrator");
  39. }
  40. }
  41. function checkPermission(...$permission_role_ids) {
  42. // 检查会话中是否设置权限ID
  43. if (empty($_SESSION['em_permission_role_id'])) {
  44. return false;
  45. }
  46. // 如果是超级管理员(ID=1),直接返回true
  47. if ($_SESSION['em_permission_role_id'] == 1) {
  48. return true;
  49. }
  50. // 检查当前角色ID是否在允许的角色ID中
  51. return in_array($_SESSION['em_permission_role_id'], $permission_role_ids);
  52. }
  53. // 检查管理员或组长或组员
  54. function checkAdminOrEmployee () {
  55. if ((empty($_SESSION['em_permission_role_id'])||($_SESSION['em_permission_role_id']!=1)&&($_SESSION['em_permission_role_id']!=2)&&($_SESSION['em_permission_role_id']!=3))) {
  56. return false;
  57. }
  58. else
  59. {
  60. return true;
  61. }
  62. }
  63. // 检查是否管理员
  64. function checkIfAdmin() {
  65. if ((empty($_SESSION['em_permission_role_id'])||($_SESSION['em_permission_role_id']!=1))) {
  66. return false;
  67. }
  68. else
  69. {
  70. return true;
  71. }
  72. }
  73. // 获取IP
  74. function getIp() {
  75. $ip = $_SERVER['HTTP_X_FORWARDED_FOR'] ?? $_SERVER['REMOTE_ADDR'];
  76. if (strlen($ip) > 15) {
  77. $ip = "UnKnow";
  78. }
  79. return htmlspecialcharsFix($ip);
  80. }
  81. // 记录操作日志
  82. function logAction($action) {
  83. global $conn;
  84. // 从SESSION获取当前用户名
  85. $loginName = $_SESSION['employee_name'] ?? 'Unknown User';
  86. // 获取当前IP
  87. $loginIp = getIp();
  88. // 当前时间
  89. $loginTime = date('Y-m-d H:i:s');
  90. // 记录到日志表
  91. $stmt = "INSERT INTO logrecord (loginName, loginIp, loginTime, loginAct) VALUES (
  92. '" . mysqli_real_escape_string($conn, $loginName) . "',
  93. '" . mysqli_real_escape_string($conn, $loginIp) . "',
  94. '$loginTime',
  95. '" . mysqli_real_escape_string($conn, $action) . "')";
  96. $conn->query($stmt);
  97. }
  98. // 移除HTML
  99. function removeHTML($t0) {
  100. if (empty($t0)) {
  101. return "";
  102. }
  103. $t0 = preg_replace("/<script.+?\/script>/is", "", $t0);
  104. $t0 = preg_replace("/<iframe.+?\/iframe>/is", "", $t0);
  105. $t0 = str_replace(["&lt;", "&gt;", "&nbsp;"], ["<", ">", ""], $t0);
  106. $t0 = preg_replace("/<.+?>/", "", $t0);
  107. return str_replace(["\r\n", "\t", "\r", "\n"], "", $t0);
  108. }
  109. // Text转HTML
  110. function txt2HTML($t0) {
  111. if (empty($t0) || is_array($t0)) {
  112. return "";
  113. }
  114. return str_replace(
  115. ["&", "\"", "<", ">", " "],
  116. ["&amp;", "&quot;", "&lt;", "&gt;", "&nbsp;"],
  117. $t0
  118. );
  119. }
  120. // HTML转Text
  121. function html2Txt($t0) {
  122. if (empty($t0) || is_array($t0)) {
  123. return "";
  124. }
  125. return str_replace(
  126. ["&quot;", "&lt;", "&gt;", "&nbsp;", "&amp;"],
  127. ["\"", "<", ">", " ", "&"],
  128. $t0
  129. );
  130. }
  131. // HTML编码
  132. function htmlEncode($t0) {
  133. if (empty($t0) || is_array($t0)) {
  134. return "";
  135. }
  136. $replacements = [
  137. chr(38) => "&#38;", chr(9) => "&#9;", chr(11) => "&#11;",
  138. chr(10) => "&#10;", chr(13) => "&#13;", chr(32) => "&#32;",
  139. chr(34) => "&#34;", chr(37) => "&#37;", chr(39) => "&#39;",
  140. chr(40) => "&#40;", chr(41) => "&#41;", chr(60) => "&#60;",
  141. chr(62) => "&#62;", chr(91) => "&#91;", chr(93) => "&#93;",
  142. chr(94) => "&#94;", chr(95) => "&#95;", chr(123) => "&#123;",
  143. chr(124) => "&#124;", chr(125) => "&#125;"
  144. ];
  145. return strtr($t0, $replacements);
  146. }
  147. // HTML解码
  148. function htmlUnCode($t0) {
  149. if (empty($t0) || is_array($t0)) {
  150. return "";
  151. }
  152. $replacements = [
  153. "&#9;" => chr(9), "&#11;" => chr(11), "&#10;" => chr(10),
  154. "&#13;" => chr(13), "&#32;" => chr(32), "&#34;" => chr(34),
  155. "&#37;" => chr(37), "&#39;" => chr(39), "&#40;" => chr(40),
  156. "&#41;" => chr(41), "&#60;" => chr(60), "&#62;" => chr(62),
  157. "&#91;" => chr(91), "&#93;" => chr(93), "&#94;" => chr(94),
  158. "&#95;" => chr(95), "&#123;" => chr(123), "&#124;" => chr(124),
  159. "&#125;" => chr(125), "&#38;" => chr(38)
  160. ];
  161. return strtr($t0, $replacements);
  162. }
  163. // 文本编码
  164. function textEncode($t0) {
  165. if (empty($t0) || is_array($t0)) {
  166. return "";
  167. }
  168. $t0 = trim($t0);
  169. $remove = [chr(8), chr(9), chr(11), chr(12), chr(10), chr(13)];
  170. $t0 = str_replace($remove, "", $t0);
  171. $replacements = [
  172. chr(38) => "&#38;", chr(47) => "&#47;", chr(32) => "&#32;",
  173. chr(34) => "&#34;", chr(37) => "&#37;", chr(39) => "&#39;",
  174. chr(40) => "&#40;", chr(41) => "&#41;", "(" => "&#40;",
  175. ")" => "&#41;", chr(60) => "&#60;", chr(62) => "&#62;",
  176. chr(91) => "&#91;", chr(93) => "&#93;", chr(94) => "&#94;",
  177. chr(95) => "&#95;", chr(123) => "&#123;", chr(124) => "&#124;",
  178. chr(125) => "&#125;"
  179. ];
  180. return strtr($t0, $replacements);
  181. }
  182. // 数字格式化
  183. function numFormat($t0) {
  184. if (empty($t0) || is_array($t0)) {
  185. return "";
  186. }
  187. $t0 = trim($t0);
  188. $remove = ["-", "+", "&#32;", "&", " ", chr(34), "*", "%", "'", "(", ")", "<", ">",
  189. "[", "]", "^", "_", "{", "\\", "/", "|", "}", "(", ")"];
  190. return str_replace($remove, "", $t0);
  191. }
  192. // 文本解码
  193. function textUncode($t0) {
  194. if (empty($t0) || is_array($t0)) {
  195. return "";
  196. }
  197. $replacements = [
  198. "&#32;" => chr(32), "&#34;" => chr(34), "&#37;" => chr(37),
  199. "&#39;" => chr(39), "&#40;" => chr(40), "&#41;" => chr(41),
  200. "&#60;" => chr(60), "&#62;" => chr(62), "&#91;" => chr(91),
  201. "&#93;" => chr(93), "&#94;" => chr(94), "&#95;" => chr(95),
  202. "&#123;" => chr(123), "&#124;" => chr(124), "&#125;" => chr(125),
  203. "&#47;" => chr(47), "&#38;" => chr(38)
  204. ];
  205. return strtr($t0, $replacements);
  206. }
  207. // HTML解码1
  208. function htmlUnCode1($t0) {
  209. if (empty($t0) || is_array($t0)) {
  210. return "";
  211. }
  212. $replacements = [
  213. "&#9;" => chr(9), "&#11;" => chr(11), "&#13;&#10;" => "<br />",
  214. "&#10;" => "<br />", "&#13;" => "<br />", "&#32;" => "&nbsp;",
  215. "&#38;" => chr(38)
  216. ];
  217. return strtr($t0, $replacements);
  218. }
  219. // 格式化时间
  220. function formatTime($ttime, $tparam) {
  221. if (!strtotime($ttime)) {
  222. return "";
  223. }
  224. $date = new DateTime($ttime);
  225. $tsrt = $tparam;
  226. $replacements = [
  227. "yyyy" => $date->format("Y"),
  228. "yy" => $date->format("y"),
  229. "mm" => $date->format("m"),
  230. "dd" => $date->format("d"),
  231. "hh" => $date->format("H"),
  232. "ff" => $date->format("i"),
  233. "ss" => $date->format("s"),
  234. "m" => $date->format("n"),
  235. "d" => $date->format("j"),
  236. "h" => $date->format("G"),
  237. "f" => $date->format("i"),
  238. "s" => $date->format("s")
  239. ];
  240. return strtr($tsrt, $replacements);
  241. }
  242. // 英文月份
  243. function enMonth($m) {
  244. $months = [
  245. "1" => "Jan", "2" => "Feb", "3" => "Mar", "4" => "Apr",
  246. "5" => "May", "6" => "Jun", "7" => "Jul", "8" => "Aug",
  247. "9" => "Sep", "10" => "Oct", "11" => "Nov", "12" => "Dec"
  248. ];
  249. return $months[$m] ?? "Dec";
  250. }
  251. // 字符串截取
  252. function strLeft($str, $strLen) {
  253. if (empty($str)) {
  254. return "";
  255. }
  256. $length = 0;
  257. $result = "";
  258. for ($i = 0; $i < mb_strlen($str); $i++) {
  259. $char = mb_substr($str, $i, 1);
  260. $length += (mb_ord($char) > 255) ? 2 : 1;
  261. if ($length > $strLen) {
  262. return $result . "..";
  263. }
  264. $result .= $char;
  265. }
  266. return $result;
  267. }
  268. // 验证邮箱
  269. function isValidEmail($email) {
  270. $names = explode("@", $email);
  271. if (count($names) !== 2) {
  272. return false;
  273. }
  274. foreach ($names as $name) {
  275. if (empty($name)) {
  276. return false;
  277. }
  278. if (preg_match("/[^a-z0-9_.-]/", strtolower($name))) {
  279. return false;
  280. }
  281. if (str_starts_with($name, ".") || str_ends_with($name, ".")) {
  282. return false;
  283. }
  284. }
  285. $domainParts = explode(".", $names[1]);
  286. if (count($domainParts) < 2) {
  287. return false;
  288. }
  289. $tldLength = strlen(end($domainParts));
  290. if ($tldLength !== 2 && $tldLength !== 3) {
  291. return false;
  292. }
  293. if (str_contains($email, "..")) {
  294. return false;
  295. }
  296. return true;
  297. }
  298. // 站点链接替换
  299. function sitelink_replace($t0, $t1, $t2, $t3) {
  300. if (empty($t0)) {
  301. return "";
  302. }
  303. $t4 = $t0;
  304. $pattern = "/(\<a[^<>]+\>.+?\<\/a\>)|(\<img[^<>]+\>)|(\<h[1-6]+[\s]*\>.+?\<\/h[1-6]+\>)/i";
  305. preg_match_all($pattern, $t4, $matches);
  306. $myarray = [];
  307. if (count($matches[0]) > 0) {
  308. foreach ($matches[0] as $i => $match) {
  309. $myarray[$i] = $match;
  310. $t4 = str_replace($match, "[$i]", $t4, $t3);
  311. }
  312. }
  313. if (empty($myarray)) {
  314. return str_replace($t1, $t2, $t0, $t3);
  315. }
  316. $t4 = str_replace($t1, $t2, $t4, $t3);
  317. foreach ($myarray as $i => $value) {
  318. $t4 = str_replace("[$i]", $value, $t4, $t3);
  319. }
  320. return $t4;
  321. }
  322. if(!function_exists('htmlspecialcharsFix')) {
  323. //处理特殊字符
  324. function htmlspecialcharsFix($input_str)
  325. {
  326. return $input_str;
  327. }
  328. }
  329. if(!function_exists('htmlspecialcharsAjaxFix')) {
  330. //处理特殊字符
  331. function htmlspecialcharsAjaxFix($input_str)
  332. {
  333. return textUncode($input_str);
  334. }
  335. }
  336. if(!function_exists('textDecode')) {
  337. function textDecode($str) {
  338. return textUncode($str);
  339. }
  340. }
  341. if(!function_exists('htmlDecode')) {
  342. function htmlDecode($str) {
  343. return htmlspecialchars_decode($str, ENT_QUOTES);
  344. }
  345. }