Zend Framework中的常见常量变量

时间:2012-05-02 06:48:30

标签: zend-framework

创建包含所有应用程序常量变量的类的最佳位置在哪里?
是吗 : - Bootstrap
- 在应用程序通用库中

例如: 1-当我从数据库中检索图像名称时,如果此记录没有图像,我想在某处放置一个默认值,以便我可以在我的模型中使用它

**我在我的所有应用程序中使用的常量,所以如果我更改它,我不想回到我的代码中的所有内容并随处更改

2 个答案:

答案 0 :(得分:5)

application.ini是最好的地方,例如在那里定义一些常量

constants.PUBLIC_PATH =  APPLICATION_PATH "/../public/"
constants.THEME = blue

然后在你的引导程序中

protected function setConstants($constants)
{
    foreach($constants as $name => $value)
    {
         if(!defined($name))
            define($name, $value);
    }

}

ZF从config获取'常量'并在你的引导程序中调用setConstants方法,传递所有前缀为常量的行,因此它是一个数组。

答案 1 :(得分:0)

我尝试不使用常量,更喜欢类常量而不是全局常量。但是,当常量不可避免时,无论出于何种原因,我都会使用.ini配置文件和Bootstrap / library / model类常量。

.ini配置常量

的示例

(假设default zf project structure

应用/ CONFIGS /的application.ini

constants.MESSAGE_1 = "Message 1"
constants.MESSAGE_2 = "Message 2"

Bootstap.php

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
    protected function _initConstants()
    {
        $options = $this->getOption('constants');

        if (is_array($options)) {
            foreach($options as $key => $value) {
                if(!defined($key)) {
                    define($key, $value);
                }
            }
        }
    }

    // ...
}

控制器中的示例用法:

class IndexController extends Zend_Controller_Action
{
    public function indexAction()
    {
        $this->view->message1 = MESSAGE_1;
        $this->view->message2 = MESSAGE_2;
    }
}

我会扩展上面的内容以允许配置如何定义常量。例如,您可能希望所有常量都是UPPERCASED,并允许或禁止已经定义的常量,所以:

应用/ CONFIGS /的application.ini

constants.forceUppercase = 1
constants.allowAlreadyDefined = 1
constants.set.message_1 = "Message 1"
constants.set.message_2 = "Message 2"

自举:

    protected function _initConstants()
    {
        $options = $this->getOption('constants');

        if (isset($options['set']) && is_array($options['set'])) {

            if (isset($options['forceUppercase'])
                && (bool) $options['forceUppercase']) {
                $options['set'] = array_change_key_case($options['set'], CASE_UPPER);
            }

            $allowAlreadyDefined = false;
            if (isset($options['allowAlreadyDefined'])
                && (bool) $options['allowAlreadyDefined']) {
                $allowAlreadyDefined = true;
            }

            foreach($options['set'] as $key => $value) {
                if (!defined($key)) {
                    define($key, $value);
                } elseif (!$allowAlreadyDefined) {
                    throw new InvalidArgumentException(sprintf(
                        "'%s' already defined!", $key));
                }
            }
        }
    }

Bootstrap类常量

可能是您自己的库或模型类等,取决于它。

在引导程序中:

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
    const MESSAGE_CONSTANT = "Hello World";

    // ...
}

控制器中的示例用法:

class IndexController extends Zend_Controller_Action
{
    public function indexAction()
    {
        $this->view->message = Bootstrap::MESSAGE_CONSTANT;
    }
}