>백엔드 개발 >PHP 튜토리얼 >PHP找不到类?

PHP找不到类?

WBOY
WBOY원래의
2016-06-06 20:31:202289검색

<code>    <?php $test = new testString();

    var_dump($test->test1());

    class testString extends Father{

        public function test1(){
            return 1;
        }

    }
</code>
<code><?php class Father{
    public function __construct( ) {
    }
}
</code></code>

为什么会报错?

Fatal error: Class 'testString' not found

如果我去掉extends Father之后就可以正常输出了。

回复内容:

<code>    <?php $test = new testString();

    var_dump($test->test1());

    class testString extends Father{

        public function test1(){
            return 1;
        }

    }
</code>
<code><?php class Father{
    public function __construct( ) {
    }
}
</code></code>

为什么会报错?

Fatal error: Class 'testString' not found

如果我去掉extends Father之后就可以正常输出了。

第一,从你贴出来的代码看,你应该是写在两个文件之中,在 testString 类文件中没有 require 或 include Father类文件。
第二,也是你这个问题的关键所在,类声明的顺序,在文件编译过程中,编译到 testString 类声明时,发现没有Father类(即未声明),这时 testString 类声明失败, 这个你可以用class_exists()来验证一下。所以在实例化 testString类的时候报错 class 'testString' not found。

将父类在继承其的子类之前声明就可以了。

因为你的定义在调用的后面呀

肯定错啊。

顺序执行,testString还没定义,你就new了。

请将父类写到子类前面,请在定义类以后在实例化

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.