<?php include("news.php"); ?>
你好,我news.php
在我的主页中包含一个index.php
。我想news.php
每 30 秒刷新一次,但不刷新主页index.php
,如何部分刷新包含 php 页面?谢谢。
<?php include("news.php"); ?>
你好,我news.php
在我的主页中包含一个index.php
。我想news.php
每 30 秒刷新一次,但不刷新主页index.php
,如何部分刷新包含 php 页面?谢谢。
刷新包含的另一种方法(仅当包含仅包含变量及其值时才有效):
<?php
$config = file_get_contents("news.php");
$config = str_replace("<?php", "", $config);
$config = str_replace("?>", "", $config);
eval($config);
?>
非常简单的刷新方法包括(仅适用于后端单用户,不适用于前端):
<?php
$t = time();
rename("news.php", "news_${t}.php");
include("news_${t}.php");
rename("news_${t}.php", "news.php");
?>