# 二、1.onethink迁移函数
1.onethink引进函数
过滤函数位于common/common/function.php中。
/**
t函数用于过滤标签,输出没有html的干净的文本
@param string text 文本内容
@return string 处理后内容
*/
~~~
function op_t($text)
{
$text = nl2br($text);
$text = real_strip_tags($text);
$text = addslashes($text);
$text = trim($text);
return $text;
}
~~~
/**
h函数用于过滤不安全的html标签,输出安全的html
@param string $text 待过滤的字符串
@param string $type 保留的标签格式
@return string 处理后内容
*/
function op_h($text, $type = 'html'){
}