3
<?php include("news.php"); ?>

你好,我news.php在我的主页中包含一个index.php。我想news.php每 30 秒刷新一次,但不刷新主页index.php,如何部分刷新包含 php 页面?谢谢。

4

2 回答 2

-1

刷新包含的另一种方法(仅当包含仅包含变量及其值时才有效):

<?php
$config = file_get_contents("news.php");
$config = str_replace("<?php", "", $config);
$config = str_replace("?>", "", $config);
eval($config);
?>
于 2021-07-19T17:43:19.707 回答
-3

非常简单的刷新方法包括(仅适用于后端单用户,不适用于前端):

<?php
$t = time();
rename("news.php", "news_${t}.php");
include("news_${t}.php");
rename("news_${t}.php", "news.php");
?>
于 2021-07-17T08:08:40.110 回答