/**
* 清理url地址路径中的非法字符
*/
function
clear(
$str
) {
return
str_replace
(
array
"\n"
,
"\r"
'..'
),
''
);
}