PHP:所有页面的全局变量

发布于 2024-12-09 18:08:48 字数 110 浏览 0 评论 0原文

我需要一个可以从每个 php 页面调用的常量。 因此,例如,我在某处声明此常量 $APP_VERSION = "5.5"

然后我想从任何页面调用这个变量。怎么办?

I need a constant that can be called from every php page.
So, for example, I declare this constant somewhere, $APP_VERSION = "5.5".

Then I would like to call this variable from any pages. how to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

演出会有结束 2024-12-16 18:08:48
define('APP_VERSION', '5.5');

您可以将其放入将包含在页面中的文件中。这样你就可以通过 APP_VERSION 访问它

echo APP_VERSION; //outputs 5.5
define('APP_VERSION', '5.5');

You can put that in the file that would be included into your pages. I'n that way you'd access it by APP_VERSION

echo APP_VERSION; //outputs 5.5
凶凌 2024-12-16 18:08:48

您可以使用 define 定义常量:

define('APP_VERSION', '5.5');

然后,在其他文件中:

echo APP_VERSION; // outputs '5.5'

http ://php.net/manual/en/function.define.php

You can define constants using define:

define('APP_VERSION', '5.5');

Then, in other files:

echo APP_VERSION; // outputs '5.5'

http://php.net/manual/en/function.define.php

情域 2024-12-16 18:08:48

您可以定义一个文件(例如 costant.php),其中包含所有常量,然后您必须使用 include 才能在每个脚本中检索它们。

You could define a file (for example costant.php) which will contains all your constants and then you have to use include to be able to retrieve them in every script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文