在PHP中,可以使用header()函数进行页面跳转。以下是一些常见的页面跳转示例代码:
header("Location: http://www.example.com"); exit;
header("Location: another_page.php"); exit;
header("Refresh: 5; URL=http://www.example.com"); exit;
上述代码中的5表示等待5秒后跳转。
注意事项: