Zend 中应用程序常量存储在哪里?

发布于 2024-10-08 15:23:13 字数 586 浏览 2 评论 0原文

我需要为我的应用程序定义一些常量,例如 SITE_KEY,它将包含盐密码的随机密钥。

不过,我不确定应该在哪里定义它们。我想把它们放在 public/index.php 中,但这看起来有点乱。根据 Zend 之类的说法,他们应该去一个特定的地方吗?

谢谢

编辑

我正在尝试这样做: 在我的 application.ini 中,我有这样的:

siteglobal.sitekey = "test"

在我的 bootstrap.php 文件中:

protected function _initGlobals()
{
$config = $this->getOptions();
define('SITE_KEY', $config['siteglobal']['sitekey']);

}

尽管如此,这不是'不工作,当我尝试在控制器中回显 SITE_KEY 时,如下所示:

echo SITE_KEY;

它不显示任何内容。有什么想法吗?

I have a few constants that I'll need to define for my application, for example, SITE_KEY which would contain a random key for salt passwords.

I'm not sure where I should define those, though. I thought of placing them in public/index.php but that seems a bit messy. Is there a specific place where they should go, according to Zend or something?

Thanks

EDIT

I'm trying to do it this way:
In my application.ini I have this:

siteglobal.sitekey = "test"

and in my bootstrap.php file:

protected function _initGlobals()
{
$config = $this->getOptions();
define('SITE_KEY', $config['siteglobal']['sitekey']);

}

Still, this isn't working, when I try to echo SITE_KEY in my controller like this:

echo SITE_KEY;

It doesn't show anything. Any ideas?

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

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

发布评论

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

评论(3

∞梦里开花 2024-10-15 15:23:13

在我的应用程序中,我结合了 Haim 和 Yeroon 的方法。我将应用程序常量存储在 application.ini 中,然后在 Bootstrap 中解析它们并将它们放入 Zend_Registry 中。

因此,在 application.ini 中的

constants.site_key = my_site_key

Bootstrap

protected function _initConstants()
{
    $registry = Zend_Registry::getInstance();
    $registry->constants = new Zend_Config( $this->getApplication()->getOption('constants') );
}

然后我可以从应用程序中的任何位置(模型、控制器等)访问这些常量

Zend_Registry::getInstance()->constants->site_key

In my application, I'm combining both Haim's and Yeroon's approaches. I'm storing application constants in my application.ini, then parsing them in the Bootstrap and putting them into Zend_Registry.

So, in the application.ini

constants.site_key = my_site_key

In the Bootstrap

protected function _initConstants()
{
    $registry = Zend_Registry::getInstance();
    $registry->constants = new Zend_Config( $this->getApplication()->getOption('constants') );
}

Then I can access these constants from any place in the application (model, controller, etc.)

Zend_Registry::getInstance()->constants->site_key
如痴如狂 2024-10-15 15:23:13

您是否尝试过Zend_Registry?它用于存储应用程序范围的值、对象等。

存储:

Zend_Registry::set('index', $value);

检索:

$value = Zend_Registry::get('index');

Have you tried Zend_Registry? It's used to store application-wide values, objects etc.

Store:

Zend_Registry::set('index', $value);

Retrieve:

$value = Zend_Registry::get('index');
不语却知心 2024-10-15 15:23:13

应用程序/configs/application.ini

myvar = myvalue

后获取它们如下:

$myvar = $application->getOption('myvar');

阅读更多。 ...

in

application/configs/application.ini

myvar = myvalue

after get them like :

$myvar = $application->getOption('myvar');

read more ....

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