// ========== 自动内链功能 ========== /** * 获取内链关键词列表(带缓存) */ 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; } 系统提示......
观看记录
  • 我的观影记录
登录
系统提示......
亲爱用户:
请不要频繁操作。可在1小时后再试。
页面自动 跳转 等待时间: 3