AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
函数 ```php if (!function_exists('sensitive_words_filter')) { /** * 敏感词过滤 * * @param string * @return string */ function sensitive_words_filter($str) { if (!$str) return ''; //敏感词路径 $file = 'public/static/plug/censorwords/CensorWords'; //引入 $words = file($file); //循环替换 foreach ($words as $word) { $word = str_replace(array("\r\n", "\r", "\n", "/", "<", ">", "=", " "), '', $word); if (!$word) continue; $ret = preg_match("/$word/", $str, $match); if ($ret) { return $match[0]; } } return ''; } } ``` CensorWords文件内容自己定义