1

这是错误:

别名“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";
    }
}

我正在使用光速 cms。

4

1 回答 1

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 编码标准建议

于 2016-06-24T08:42:07.730 回答