php通用检测函数集(5)

// 函数名:alertexit($c_alert,$i_goback=0) // 作 用:非法操作警告 // 参 数:$c_alert(提示的错误信息) // $i_goback(返回到那一页) // 返回值:字符串 // 备 注:无 //———————————————————————————– ——- function alertexit($c_alert,$i_goback=0) { if($i_goback0) { echo “《script》alert($c_alert);history.go($i_goback);《script》”; exit; } else { echo “《script》alert($c_alert);《script》”; exit; } } //———————————————————————————– ——- //———————————————————————————– ——- // 函数名:replacespacialchar($c_char) // 作 用:特殊字符替换函数 // 参 数:$c_char(待替换的字符串) // 返回值:字符串 // 备 注:无 //———————————————————————————– ——- function replacespecialchar($c_char) { $c_char=htmlspecialchars($c_char); //将特殊字元转成 html 格式。 $c_char=nl2br($c_char); //将回车替换为 $c_char=str_replace(” “,” “,$c_char); //替换空格替换为 $c_char=str_replace(“

Posted in 未分类

发表评论