PHP跳转语句
时间: 2023-07-04 08:17:33 浏览: 131
跳转语句1
在PHP中,可以使用header函数来实现跳转,该函数的语法如下:
```php
header("Location: 跳转的URL");
```
其中,URL为要跳转的目标地址,例如:
```php
header("Location: https://www.baidu.com");
```
该语句会将页面重定向到百度的首页。请注意,该语句必须在任何输出之前调用,否则会出现“headers already sent”错误。
阅读全文