PHP中的名称空间阻止使用Yii静态函数

PHP中的名称空间阻止使用Yii静态函数,php,yii,namespaces,Php,Yii,Namespaces,我刚刚在我的小应用程序中实现了名称空间,如下所述: 我遇到一个问题,我的控制器将不再访问Yii::app()->getRequest()表示找不到包含(C:\Users\bkuhl\htdocs\instaLabel\application\protected\components\Yii.php):无法打开流:没有这样的文件或目录 我意识到这是因为我将名称空间声明为应用程序/组件。但我不知道如何解决这个问题 <?php namespace application\components;

我刚刚在我的小应用程序中实现了名称空间,如下所述:

我遇到一个问题,我的控制器将不再访问
Yii::app()->getRequest()表示找不到
包含(C:\Users\bkuhl\htdocs\instaLabel\application\protected\components\Yii.php):无法打开流:没有这样的文件或目录

我意识到这是因为我将名称空间声明为应用程序/组件。但我不知道如何解决这个问题

<?php

namespace application\components;

/**
 * Controller is the customized base controller class.
 * All controller classes for this application should extend from this base class.
 */
class Controller extends \CController {
    /* @var $request CHttpRequest */
    protected $request = null;

    /**
     * @var string the default layout for the controller view. Defaults to '//layouts/column1',
     * meaning using a single column layout. See 'protected/views/layouts/column1.php'.
     */
    public $layout='//layouts/column1';
    /**
     * @var array context menu items. This property will be assigned to {@link CMenu::items}.
     */
    public $menu=array();
    /**
     * @var array the breadcrumbs of the current page. The value of this property will
     * be assigned to {@link CBreadcrumbs::links}. Please refer to {@link CBreadcrumbs::links}
     * for more details on how to specify this property.
     */
    public $breadcrumbs=array();

    public function __construct ($id, $module = null) {
        parent::__construct($id, $module);

        $this->request = Yii::app()->getRequest();
    }
您是否尝试过:

$this->request = \Yii::app()->getRequest();
\
将使用:

在名称前面加上\将指定该名称是全局空间中所必需的,即使在命名空间的上下文中也是如此


您需要完全限定相对类名
Yii


最方便的方法是通过类实现:只需添加
use Yii位于命名空间声明下方。

如果类中多次出现
Yii
,这肯定会更好。这与
使用Yii/Yii相同吗?@Webnet:这不是有效的语法。即使是这样,它也会引用命名空间
Yii
中的类
Yii
。没有名称空间
Yii
,因此它在任何情况下都毫无意义。如果没有Yii的名称空间,包含
use Yii
有什么意义?@Webnet:
Yii
是全局名称空间中的一个类。你可以想象前面有一个隐含的“\”。在我的回答中没有提到,当你多次出现
Yii
时,使用
use Yii肯定会更好如Jon所建议,但对于一次性案例,您可以使用\