如何将变量值从一个php文件更新到另一个php文件

时间:2013-04-11 16:43:37

标签: php

我的项目中有三个php文件,即“initial.php”,“inc.php”,“dec.php”。我在intial.php

中声明了变量a

例如:

$every_where=0;

我在其他两个文件中包含了“intial.php”,我想增加和减少变量“$ everywher”的值。所以我做的是: 在“inc.php”中

$every_where= $every_where -1;

在“dec.php”中

$every_where= $every_where -1;

但是当我从“inc.php”移动到“dec.php”时,它再次从0开始,反之亦然。但是想要一种方法,以便在$every_where中的每次递增或递减之后更新initial.php的值。

1 个答案:

答案 0 :(得分:3)

最简单的解决方案是将值存储在会话中。

在脚本的开头使用:

session_start();

if (!isset($_SESSION['every_where']) {
    $every_where = 0;
} else {
    $every_where = $_SESSION['every_where']
}

然后你可以通过页面调用递增和递减值,如下所示:

--$every_where; // in dec.php
++$every_where; // in inc.php

在脚本结束时将值存储回会话:

$_SESSION['every_where'] = $every_where;