当前位置:Gxlcms > PHP教程 > 自个儿写了一个跳转函数一直在报错

自个儿写了一个跳转函数一直在报错

时间: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 "";

}
}

人气教程排行