Alias" custom.controllers.ExampleController.php"是无效的

时间:2016-06-24 07:14:36

标签: php yii reference lightspeed

这是错误:

  

Alias" custom.controllers.ExampleController.php"是无效的。确保   它指向一个现有的PHP文件,该文件是可读的。

我的代码如下:

main.php=>
    return
    array(
        'controllerMap' => array(
            'product' => array(
                'class' => 'custom.controllers.Product.php',
            ),
        ),

        'import' => array(
            'custom.mycompany.*',
        ),

        'components' =>
            array(
                'widgetHandler' => array(
                    //Load a component
                    'class' => 'custom.mycompany.mywidget.mywidget',
                ),

            )
);

Product.php=>

    <?php

class Product extends Controller
{
    public function actionIndex()
    {
        echo "this is the default index function";
    }

    public function actionTest()
    {
        echo "This is the test function";
    }
}

我正在使用lightspeed cms。

1 个答案:

答案 0 :(得分:0)

Yii2 / php类的表示法不是基于点的,而是基于斜杠的

   'class' => 'custom\controllers\Product.php',

(在你的代码中没有ExampleController ..)

请参阅p https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md

https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-4-autoloader.md

https://github.com/yiisoft/yii2/blob/master/docs/internals/core-code-style.md

对于PHP和Yii2编码标准建议