conn.php 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. <?php
  2. // 设置编码
  3. session_start();
  4. header('Content-Type: text/html; charset=utf-8');
  5. header('Cache-Control: no-cache');
  6. // 数据库连接
  7. $conn = new mysqli("127.0.0.1", "crm", "Qweasdzxc", "crm");
  8. if ($conn->connect_error) {
  9. die("Connection failed: " . $conn->connect_error);
  10. }
  11. $conn->set_charset("utf8");
  12. // 检查登录
  13. function checkLogin() {
  14. if (empty($_SESSION['employee_id'])) {
  15. echo "<script>top.location.href='index.php'</script>";
  16. exit;
  17. }
  18. }
  19. // 获取IP
  20. function getIp() {
  21. $ip = $_SERVER['HTTP_X_FORWARDED_FOR'] ?? $_SERVER['REMOTE_ADDR'];
  22. if (strlen($ip) > 15) {
  23. $ip = "UnKnow";
  24. }
  25. return htmlspecialchars($ip);
  26. }
  27. // 移除HTML
  28. function removeHTML($t0) {
  29. if (empty($t0)) {
  30. return "";
  31. }
  32. $t0 = preg_replace("/<script.+?\/script>/is", "", $t0);
  33. $t0 = preg_replace("/<iframe.+?\/iframe>/is", "", $t0);
  34. $t0 = str_replace(["&lt;", "&gt;", "&nbsp;"], ["<", ">", ""], $t0);
  35. $t0 = preg_replace("/<.+?>/", "", $t0);
  36. return str_replace(["\r\n", "\t", "\r", "\n"], "", $t0);
  37. }
  38. // Text转HTML
  39. function txt2HTML($t0) {
  40. if (empty($t0) || is_array($t0)) {
  41. return "";
  42. }
  43. return str_replace(
  44. ["&", "\"", "<", ">", " "],
  45. ["&amp;", "&quot;", "&lt;", "&gt;", "&nbsp;"],
  46. $t0
  47. );
  48. }
  49. // HTML转Text
  50. function html2Txt($t0) {
  51. if (empty($t0) || is_array($t0)) {
  52. return "";
  53. }
  54. return str_replace(
  55. ["&quot;", "&lt;", "&gt;", "&nbsp;", "&amp;"],
  56. ["\"", "<", ">", " ", "&"],
  57. $t0
  58. );
  59. }
  60. // HTML编码
  61. function htmlEncode($t0) {
  62. if (empty($t0) || is_array($t0)) {
  63. return "";
  64. }
  65. $replacements = [
  66. chr(38) => "&#38;", chr(9) => "&#9;", chr(11) => "&#11;",
  67. chr(10) => "&#10;", chr(13) => "&#13;", chr(32) => "&#32;",
  68. chr(34) => "&#34;", chr(37) => "&#37;", chr(39) => "&#39;",
  69. chr(40) => "&#40;", chr(41) => "&#41;", chr(60) => "&#60;",
  70. chr(62) => "&#62;", chr(91) => "&#91;", chr(93) => "&#93;",
  71. chr(94) => "&#94;", chr(95) => "&#95;", chr(123) => "&#123;",
  72. chr(124) => "&#124;", chr(125) => "&#125;"
  73. ];
  74. return strtr($t0, $replacements);
  75. }
  76. // HTML解码
  77. function htmlUnCode($t0) {
  78. if (empty($t0) || is_array($t0)) {
  79. return "";
  80. }
  81. $replacements = [
  82. "&#9;" => chr(9), "&#11;" => chr(11), "&#10;" => chr(10),
  83. "&#13;" => chr(13), "&#32;" => chr(32), "&#34;" => chr(34),
  84. "&#37;" => chr(37), "&#39;" => chr(39), "&#40;" => chr(40),
  85. "&#41;" => chr(41), "&#60;" => chr(60), "&#62;" => chr(62),
  86. "&#91;" => chr(91), "&#93;" => chr(93), "&#94;" => chr(94),
  87. "&#95;" => chr(95), "&#123;" => chr(123), "&#124;" => chr(124),
  88. "&#125;" => chr(125), "&#38;" => chr(38)
  89. ];
  90. return strtr($t0, $replacements);
  91. }
  92. // 文本编码
  93. function textEncode($t0) {
  94. if (empty($t0) || is_array($t0)) {
  95. return "";
  96. }
  97. $t0 = trim($t0);
  98. $remove = [chr(8), chr(9), chr(11), chr(12), chr(10), chr(13)];
  99. $t0 = str_replace($remove, "", $t0);
  100. $replacements = [
  101. chr(38) => "&#38;", chr(47) => "&#47;", chr(32) => "&#32;",
  102. chr(34) => "&#34;", chr(37) => "&#37;", chr(39) => "&#39;",
  103. chr(40) => "&#40;", chr(41) => "&#41;", "(" => "&#40;",
  104. ")" => "&#41;", chr(60) => "&#60;", chr(62) => "&#62;",
  105. chr(91) => "&#91;", chr(93) => "&#93;", chr(94) => "&#94;",
  106. chr(95) => "&#95;", chr(123) => "&#123;", chr(124) => "&#124;",
  107. chr(125) => "&#125;"
  108. ];
  109. return strtr($t0, $replacements);
  110. }
  111. // 数字格式化
  112. function numFormat($t0) {
  113. if (empty($t0) || is_array($t0)) {
  114. return "";
  115. }
  116. $t0 = trim($t0);
  117. $remove = ["-", "+", "&#32;", "&", " ", chr(34), "*", "%", "'", "(", ")", "<", ">",
  118. "[", "]", "^", "_", "{", "\\", "/", "|", "}", "(", ")"];
  119. return str_replace($remove, "", $t0);
  120. }
  121. // 文本解码
  122. function textUncode($t0) {
  123. if (empty($t0) || is_array($t0)) {
  124. return "";
  125. }
  126. $replacements = [
  127. "&#32;" => chr(32), "&#34;" => chr(34), "&#37;" => chr(37),
  128. "&#39;" => chr(39), "&#40;" => chr(40), "&#41;" => chr(41),
  129. "&#60;" => chr(60), "&#62;" => chr(62), "&#91;" => chr(91),
  130. "&#93;" => chr(93), "&#94;" => chr(94), "&#95;" => chr(95),
  131. "&#123;" => chr(123), "&#124;" => chr(124), "&#125;" => chr(125),
  132. "&#47;" => chr(47), "&#38;" => chr(38)
  133. ];
  134. return strtr($t0, $replacements);
  135. }
  136. // HTML解码1
  137. function htmlUnCode1($t0) {
  138. if (empty($t0) || is_array($t0)) {
  139. return "";
  140. }
  141. $replacements = [
  142. "&#9;" => chr(9), "&#11;" => chr(11), "&#13;&#10;" => "<br />",
  143. "&#10;" => "<br />", "&#13;" => "<br />", "&#32;" => "&nbsp;",
  144. "&#38;" => chr(38)
  145. ];
  146. return strtr($t0, $replacements);
  147. }
  148. // 格式化时间
  149. function formatTime($ttime, $tparam) {
  150. if (!strtotime($ttime)) {
  151. return "";
  152. }
  153. $date = new DateTime($ttime);
  154. $tsrt = $tparam;
  155. $replacements = [
  156. "yyyy" => $date->format("Y"),
  157. "yy" => $date->format("y"),
  158. "mm" => $date->format("m"),
  159. "dd" => $date->format("d"),
  160. "hh" => $date->format("H"),
  161. "ff" => $date->format("i"),
  162. "ss" => $date->format("s"),
  163. "m" => $date->format("n"),
  164. "d" => $date->format("j"),
  165. "h" => $date->format("G"),
  166. "f" => $date->format("i"),
  167. "s" => $date->format("s")
  168. ];
  169. return strtr($tsrt, $replacements);
  170. }
  171. // 英文月份
  172. function enMonth($m) {
  173. $months = [
  174. "1" => "Jan", "2" => "Feb", "3" => "Mar", "4" => "Apr",
  175. "5" => "May", "6" => "Jun", "7" => "Jul", "8" => "Aug",
  176. "9" => "Sep", "10" => "Oct", "11" => "Nov", "12" => "Dec"
  177. ];
  178. return $months[$m] ?? "Dec";
  179. }
  180. // 字符串截取
  181. function strLeft($str, $strLen) {
  182. if (empty($str)) {
  183. return "";
  184. }
  185. $length = 0;
  186. $result = "";
  187. for ($i = 0; $i < mb_strlen($str); $i++) {
  188. $char = mb_substr($str, $i, 1);
  189. $length += (mb_ord($char) > 255) ? 2 : 1;
  190. if ($length > $strLen) {
  191. return $result . "..";
  192. }
  193. $result .= $char;
  194. }
  195. return $result;
  196. }
  197. // 验证邮箱
  198. function isValidEmail($email) {
  199. $names = explode("@", $email);
  200. if (count($names) !== 2) {
  201. return false;
  202. }
  203. foreach ($names as $name) {
  204. if (empty($name)) {
  205. return false;
  206. }
  207. if (preg_match("/[^a-z0-9_.-]/", strtolower($name))) {
  208. return false;
  209. }
  210. if (str_starts_with($name, ".") || str_ends_with($name, ".")) {
  211. return false;
  212. }
  213. }
  214. $domainParts = explode(".", $names[1]);
  215. if (count($domainParts) < 2) {
  216. return false;
  217. }
  218. $tldLength = strlen(end($domainParts));
  219. if ($tldLength !== 2 && $tldLength !== 3) {
  220. return false;
  221. }
  222. if (str_contains($email, "..")) {
  223. return false;
  224. }
  225. return true;
  226. }
  227. // 站点链接替换
  228. function sitelink_replace($t0, $t1, $t2, $t3) {
  229. if (empty($t0)) {
  230. return "";
  231. }
  232. $t4 = $t0;
  233. $pattern = "/(\<a[^<>]+\>.+?\<\/a\>)|(\<img[^<>]+\>)|(\<h[1-6]+[\s]*\>.+?\<\/h[1-6]+\>)/i";
  234. preg_match_all($pattern, $t4, $matches);
  235. $myarray = [];
  236. if (count($matches[0]) > 0) {
  237. foreach ($matches[0] as $i => $match) {
  238. $myarray[$i] = $match;
  239. $t4 = str_replace($match, "[$i]", $t4, $t3);
  240. }
  241. }
  242. if (empty($myarray)) {
  243. return str_replace($t1, $t2, $t0, $t3);
  244. }
  245. $t4 = str_replace($t1, $t2, $t4, $t3);
  246. foreach ($myarray as $i => $value) {
  247. $t4 = str_replace("[$i]", $value, $t4, $t3);
  248. }
  249. return $t4;
  250. }
  251. ?>