gpt4 book ai didi

php - php只刷新一次页面

转载 作者:行者123 更新时间:2023-12-03 23:06:30 25 4
gpt4 key购买 nike

我在我的网站上使用 PHP,并从 myfile.php 中单击我希望页面只刷新一次:代码如下:

<?php 
if(called from myfile.php){
header(refresh:0);
}
Php code 1;
PHP code 2;
.
.
.
PHP code n;
?>

如何实现这个场景?

最佳答案

你可以这样做:

if(empty($_GET['status'])){
header('Location:YourPagesPath.php?status=1');
exit;
}

如果 GET 参数不存在,这将重新加载页面。

关于php - php只刷新一次页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34090537/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com