<?php
/**
* YzmCMS站點首頁 - 商業用途請購買官方授權
* @license http://www.yzmcms.com
* @lastmodify 2020-01-15
*/
defined('IN_YZMPHP') or exit('Access Denied');
yzm_xxx::load_model('content', 'index', 0);
class index{
private $siteid,$siteinfo;
/* 文章內容敏感詞檢測頁 */
protected function _recontent($content){
$arr = explode('|', get_config('prohibit_words'));
return str_replace($arr, '*', $content);
}
}