// ========== 自动内链功能 ========== /** * 获取内链关键词列表(带缓存) */ function get_internal_links_cache() { $links = cache("internal_links"); if (empty($links)) { $links = \think\Db::query("SELECT keyword, link_url FROM mac_internal_link WHERE status = 1"); if (!empty($links)) { cache("internal_links", $links, 3600); } } return $links; } /** * 自动内链替换函数(用于视频简介) */ function auto_internal_link($content) { if (empty($content)) return $content; $links = get_internal_links_cache(); if (empty($links)) return $content; foreach ($links as $item) { $keyword = $item['keyword']; $url = $item['link_url']; $content = str_replace($keyword, ''.$keyword.'', $content); } return $content; } 最新动漫-推荐动漫 - 光影星播客
观看记录
  • 我的观影记录
登录
切换深色外观
留言
回到顶部