CakePHP 2.0是否仍需要在模型中声明$ name?

时间:2011-11-08 02:37:47

标签: cakephp

我的印象是我们必须声明 - public $ name ='ModelName';在PHP4专用的模型中。既然cakephp不再支持PHP4,我认为模型中不再需要$ name声明。该食谱仍然有说明,包括它:http://book.cakephp.org/2.0/en/models.html

模型在没有我看到的情况下工作正常。它用于什么,为什么我需要它?

谢谢!

2 个答案:

答案 0 :(得分:2)

这只是早期食谱的遗留物。参见例如http://book.cakephp.org/2.0/en/models/model-attributes.html#name,它提到了PHP4兼容性,即使CakePHP 2.0不再适用于PHP4。

所以,回答你的问题:不,你不必在你的模型中声明$name

答案 1 :(得分:0)

你不需要在任何课程中使用$ name。 甚至在1.3(仍然使用php4,无论如何^^),但尤其不是在2.0。

我写了一个增强的UpgradeShell,它从所有类文件中删除了那些不必要的块: http://cakephp.lighthouseapp.com/projects/42648/tickets/2117-improvements-for-20-upgrade-shell 但这个新命令我还没有添加到票证补丁中。

我调用了命令“name”

/**
 * Remove name (lib, controller, model, view, component, behavior, helper, fixture)
 *
 * @return void
 */
public function name() {
    $libs = App::path('Lib');
    $views = App::path('views');
    $controllers = App::path('controllers');
    $components = App::path('components');
    $models = App::path('models');
    $helpers = App::path('helpers');
    $behaviors = App::path('behaviors');

    $this->_paths = array_merge($libs, $views, $controllers, $components, $models, $helpers, $behaviors);
    $this->_paths[] = TESTS . 'Fixture' . DS;

    if (!empty($this->params['plugin'])) {
        $pluginPath = App::pluginPath($this->params['plugin']);
        $this->_paths = array(
            $pluginPath . 'Lib' . DS,
            $pluginPath . 'Controller' . DS,
            $pluginPath . 'Controller' . DS . 'Component' .DS,
            $pluginPath . 'View' . DS,
            $pluginPath . 'View' . DS . 'Helper' . DS,
            $pluginPath . 'Model' . DS,
            $pluginPath . 'Model' . DS . 'Behavior' . DS,
            $pluginPath . 'Test' . DS . 'Fixture' . DS,
            $pluginPath . 'libs' . DS,
            $pluginPath . 'controllers' . DS,
            $pluginPath . 'controllers' . DS . 'components' .DS,
            $pluginPath . 'views' . DS,
            $pluginPath . 'views' . DS . 'helpers' .DS,
            $pluginPath . 'models' . DS,
            $pluginPath . 'models' . DS . 'behaviors' . DS,
            $pluginPath . 'tests' . DS . 'fixtures' . DS,
        );
    }

    $patterns = array(
        array(
            'remove var $name = ...;',
            '/\bvar\s*\$name\s*=\s*(.*);/',
            ''
        ),
        array(
            'remove public $name = ...;',
            '/\bpublic\s*\$name\s*=\s*(.*);/',
            ''
        ),
    );
    $this->_filesRegexpUpdate($patterns);
}