首頁 > 後端開發 > php教程 > 命名空间的问题

命名空间的问题

WBOY
發布: 2016-06-06 20:47:01
原創
864 人瀏覽過

最近在用thinkphp3.2

在\Application\Content\Logic目录下部署了一个logic类:ArticleLogic.class.php

我在Controller里面调用:

<code class="lang-php">$article_logic = new \Content\Logic\AritcleLogic();
</code>
登入後複製
登入後複製

系统提示:
Class 'Content\Logic\AritcleLogic' not found

是什么问题呢

附AritcleLogic代码

<code class="lang-php">namespace Content\Logic;

class AritcleLogic {

    public function remove() {
        echo 'remove article ...';
    }

    public function save() {

    }

    public function history() {
    }
}
</code>
登入後複製
登入後複製

回复内容:

最近在用thinkphp3.2

在\Application\Content\Logic目录下部署了一个logic类:ArticleLogic.class.php

我在Controller里面调用:

<code class="lang-php">$article_logic = new \Content\Logic\AritcleLogic();
</code>
登入後複製
登入後複製

系统提示:
Class 'Content\Logic\AritcleLogic' not found

是什么问题呢

附AritcleLogic代码

<code class="lang-php">namespace Content\Logic;

class AritcleLogic {

    public function remove() {
        echo 'remove article ...';
    }

    public function save() {

    }

    public function history() {
    }
}
</code>
登入後複製
登入後複製

你写use了么?

建议看看是不是路径因为大小写的问题导致的,如果还不好找问题的话,建议你debug下
ThinkPHP\Library\Think\Think.class.php中找到第162左右

<code class="lang-php">$filename       =   $path . str_replace('\\', '/', $class) . EXT;
</code>
登入後複製

下面增加

<code class="lang-php">if($class == 'Content\Logic\AritcleLogic') {
   //debug_print_backtrace();
   var_dump($filename);exit;
}
</code>
登入後複製

看看实际寻找到哪里去了

命名空间的问题

相關標籤:
php
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板