Heim >Backend-Entwicklung >PHP-Tutorial >PHP中命名空间的问题

PHP中命名空间的问题

WBOY
WBOYOriginal
2016-06-06 20:27:191256Durchsuche

a.php下有个命名空间

<code>namespace foo;
class classA{
    public function foo_test(){
            echo "this is instance function";
        }  
}</code>

在factory.php下

<code>namespace factory;
import('a.php');
class classB{
    public function createA(){
        return \foo\classA::foo_test();
    }
}
</code>

为什么在factory.php下的createA方法会告诉我找不到 \foo\classA在factory.php下...它应该去a.php下找的啊,在php.5.5是可以通过的(找a.php),但是在5.6后就会找(factory.php)

请问这个如何解决啊。。。

回复内容:

a.php下有个命名空间

<code>namespace foo;
class classA{
    public function foo_test(){
            echo "this is instance function";
        }  
}</code>

在factory.php下

<code>namespace factory;
import('a.php');
class classB{
    public function createA(){
        return \foo\classA::foo_test();
    }
}
</code>

为什么在factory.php下的createA方法会告诉我找不到 \foo\classA在factory.php下...它应该去a.php下找的啊,在php.5.5是可以通过的(找a.php),但是在5.6后就会找(factory.php)

请问这个如何解决啊。。。

PHP中的引用有以下几种方式:

  1. require(file_path);

  2. require_once(file_path_;

  3. include(file_path);

  4. include_once(file_path);

  5. use 'file_path';
    具体区别自己去google

最后我想问,你这是写的什么东西???

php 好像真的没有 import() 这个内建方法...
按照 @lanffy 兄弟的改一下就好了...

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:诡异的请求,神奇的代理Nächster Artikel:laravel session 共享问题