>  기사  >  백엔드 개발  >  自己写了一个跳转函数一直在报错

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

WBOY
WBOY원래의
2016-06-23 14:01:37736검색

<?php/** * ShowMsg()返回信息定向函数 */function ShowMsg($_info,$_url)	If $_url="" Then 		echo "<script type='text/javascript'>alert('$_info');history.back();</script>"	Else 		If $_info="" Then 			header('Location:'.$_url);		else			echo "<script type='text/javascript'>alert('$_info');location.href='$_url';</script>";		End If	End If?>


回复讨论(解决方案)

你这是php吗?
另外这个代码有xss 攻击漏洞。

这个不能直接在php中使用,不符合php语法

是不是11行的else 要大写的Else
最好把错误提示贴出来

你这是php吗?
另外这个代码有xss 攻击漏洞。
php代码不是这样写的吗?我是我根据我以前写asp改的,就是在dw下有警告不能用,所以问下

这个不能直接在php中使用,不符合php语法
能不能指出来啊,asp转php不知道是不是这样写的

是不是11行的else 要大写的Else
最好把错误提示贴出来
dw下就是在If $_url="" Then 这行 警告下

function ShowMsg($_info,$_url){    If ($_url==""  ){        echo "<script type='text/javascript'>alert('$_info');history.back();</script>";    }Else{         If ($_info=="")             header('Location:'.$_url);        else            echo "<script type='text/javascript'>alert('$_info');location.href='$_url';</script>";            }}

function ShowMsg($_info,$_url){    If ($_url==""  ){        echo "<script type='text/javascript'>alert('$_info');history.back();</script>";    }Else{         If ($_info=="")             header('Location:'.$_url);        else            echo "<script type='text/javascript'>alert('$_info');location.href='$_url';</script>";            }}

原来是有这么多错误,回去看了下,修改是下面这个样子
function ShowMsg($_info,$_url){    if ($_url=="")	{        echo "<script type='text/javascript'>alert('$_info');history.back();</script>";    }	else	{         If ($_info=="") 			{				header('Location:'.$_url);			}	        else			{				echo "<script type='text/javascript'>alert('$_info');location.href='$_url';</script>";			}    }}

对了,版主,楼上说这样写有xxs漏洞???怎么解?

其实没什么问题。

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.