Problems caused by PHP namespace

Source: Internet
Author: User

  
   a . PHP_EOL;    }}class test2 {    public function hello(){        $obj = new test1;        //var_dump(get_class($obj)); //always abc\test1        $obj->hello();    }}namespace def;class test1 extends \abc\test1 {    public $a = ' bbb';}class test2 extends \abc\test2 {}(new test2)->hello();

For advice
How to call Def\test1 instead of abc\test1 in Def\test2 without altering the code of the ABC namespace

Reply content:


  
   a . PHP_EOL;    }}class test2 {    public function hello(){        $obj = new test1;        //var_dump(get_class($obj)); //always abc\test1        $obj->hello();    }}namespace def;class test1 extends \abc\test1 {    public $a = ' bbb';}class test2 extends \abc\test2 {}(new test2)->hello();

For advice
How to call Def\test1 instead of abc\test1 in Def\test2 without altering the code of the ABC namespace

The following paragraph changes this:

namespace def;class test1 extends \abc\test1 {    public $a = ' bbb';}class test2 extends test1 {}$a= new \def\test2();print_r($a->hello());
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.