自个儿写了一个跳转函数一直在报错
程序员文章站
2022-04-26 14:54:04
...
自己写了一个跳转函数一直在报错
------解决方案--------------------
/**
* 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 "";
}
}
相关文章
相关视频
推荐阅读