<form action="" method="get">
<input type="text" NAME="in">
<input type="submit">
</form>
<?php
if(!filter_has_var(INPUT_GET, "url"))
{
echo("没有 url 参数");
}
else
{
$urlS = filter_input(INPUT_GET, "url", FILTER_SANITIZE_URL);
echo $urlS;
}
?>
输入了没有任何效果啊?求解答谢谢
添加回答
举报
0/150
提交
取消