时间:2021-07-01 10:21:17 帮助过:2人阅读
/**
* ShowMsg()返回信息定向函数
*/
function ShowMsg($_info,$_url)
If $_url="" Then
echo ""
Else
If $_info="" Then
header('Location:'.$_url);
else
echo "";
End If
End If
?>
function ShowMsg($_info,$_url){
If ($_url=="" ){
echo "";
}Else{
If ($_info=="")
header('Location:'.$_url);
else
echo "";
}
}