Home >Backend Development >PHP Tutorial >如何用PHP实现网页动态跳转_PHP

如何用PHP实现网页动态跳转_PHP

WBOY
WBOYOriginal
2016-06-01 12:39:54775browse

//PHP自带函数
Header("Location: http://www.21php.com");

//利用meta
echo '';

//利用Javascript语言
echo "";
?>
-------------------------------------------------
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:位操作符_PHPNext article:逻辑操作符_PHP