PHP头条
热点:

PHP重定向的3种方式


代码如下:
//1
header("Location: index.php");

//2
echo '
window.location = "index.php";
';

//3
echo "";

www.phpzy.comtrue/phpyy/24581.htmlTechArticlePHP重定向的3种方式 代码如下: //1 header("Location: index.php"); //2 echo ' window.location = "index.php"; '; //3 echo " ";...

相关文章

PHP之友评论

今天推荐