Using namespace in if / else statements

前端 未结 4 607
一个人的身影
一个人的身影 2020-12-09 12:59

I am manipulating the same file to manage two external api classes.

One api class is based on namespaces, the other one is not.

What I would like to do is s

4条回答
  •  时光说笑
    2020-12-09 13:19

    Please see Scoping rules for importing

    The use keyword must be declared in the outermost scope of a file (the global scope) or inside namespace declarations. This is because the importing is done at compile time and not runtime, so it cannot be block scoped.

    All use does is import a symbol name into the current namespace. I would just omit the import and use the fully qualified class name, eg

    switch ($api) {
        case 'foo' :
            require_once('foo.php');
            $someVar = new SomeClass();
            break;
        case 'bar' :
           require_once('bar.php');
           $someVar = new \xxxx\TheClass();
           break;
       default :
           throw new UnexpectedValueException($api);
    }
    

    You can also simply add the use statement to the top of your script. Adding it does not commit you to including any files and it does not require the symbol to be known, eg

    use xxxx\TheClass;
    
    switch ($api) {
        case 'foo' :
            require_once('foo.php');
            $someVar = new SomeClass();
            break;
        case 'bar' :
           require_once('bar.php');
           $someVar = new TheClass(); // imported above
           break;
       default :
           throw new UnexpectedValueException($api);
    }
    

提交回复
热议问题