Importing classes and namespaces in PHP: What difference does a leading backslash make?

PhpImportNamespacesLanguage Specifications

Php Problem Overview


What's the difference between those two:

use Exception;
use \Exception;

Or those:

use Foo\Bar;
use \Foo\Bar;

The manual says:

> Note that for namespaced names (fully > qualified namespace names containing > namespace separator, such as Foo\Bar > as opposed to global names that do > not, such as FooBar), the leading > backslash is unnecessary and not > allowed, as import names must be fully > qualified, and are not processed > relative to the current namespace.

But I don't really understand this, as all of the above variants work, i.e. it definitely is not "not allowed".

A look into zend_do_use showed, that is_global (set, when there is a leading backslash) is only used for a warning in the following case:

namespace {
    use Exception;
}

Which tells me: "The use statement with non-compound name 'Exception' has no effect". (Though doing the same with use \Exception would have just as little effect, but does not throw a warning.)

So: Am I missing something? Is there actually some difference?

Php Solutions


Solution 1 - Php

The manual specifies the backslash as unnecessary, which naturally means that if you still use it that the meaning is equivalent. However, as you have pointed out, the manual says that it is supposedly not allowed, which is false.

However, there is something else troubling with the manual. They advertise this:

// importing a global class
use \ArrayObject;

If it is true that import names are not processed relative to the current namespace, then use \ArrayObject and use ArrayObject must have the same meaning. What else could use ArrayObject refer to other than the global one? In practice, the engine will import the global one.

Also, with bugs such as this: http://bugs.php.net/bug.php?id=49143

I believe there is confusion over what the standard is supposed to be.

To answer your question: there is no difference. However, if I was the engine developer who was also a believer of the no-leading-slash standard, then I wouldn't need to consider a case where someone wrote use \Exception;. I believe this was likely the case.

Solution 2 - Php

In fact there is no difference in using leading backslash in importing namespaces at the moment and also information in PHP manual has changed:

> Note that for namespaced names (fully qualified namespace names > containing namespace separator, such as Foo\Bar as opposed to global > names that do not, such as FooBar), the leading backslash is > unnecessary and not recommended, as import names must be fully > qualified, and are not processed relative to the current namespace.

So now there is true information that using leading backslash is not recommended but there is no info that it's not allowed at it was in past.

So at the moment:

use Exception;
use \Exception;

those 2 lines work the same but you should rather use the first one.

Solution 3 - Php

Usually the leading backslash defines, that the identifier is absolute. If its missing, the interpreter assumes, that it is a relative identifier.

This is an absolute identifier:

$x = new \Name\Space\To\Class();

This is a relative identifier, because of the no leading slash. It's relative to the current namespace:

namespace Name\Space;
$x = new To\Class;

This is also a relative identifier. In this case, its resolved against the use statement, because the last part (alias) is the same, as the first of the class:

namespace Other\Name\Space;
use Name\Space;
$x = new Space\To\Class;

However, because in namespace and use statements only absolute identifiers (fully qualified names) are allowed, it's ok to omit it here. In namespace, it's even not allowed to set the leading backslash.

For further information on how PHP resolves the different namespace declarations, see the namespace rules manual.

Solution 4 - Php

The leading backslash means the global namespace. If you are in a namespace's scope, you have to use that to reach the global namespace. For example:

namespace A
{
	class A
	{
		public function __construct()
		{
			echo('namespace: A<br />');
		}
	}
}

namespace B\A
{
	class A
	{
		public function __construct()
		{
			echo('namespace: B\\A<br />');
		}
	}
}

namespace B
{
	class B
	{
		public function __construct()
		{
			new \A\A(); // namespace: A
			new A\A(); // namespace: B\A
		}
	}
	new B();
}

With leading backslash you got the absolute path, and without it you got the relative path.

Solution 5 - Php

le't say we have

namespace MyNamespace
use Exception;
use \Exception;

then the first use actually imports class MyNamespace\Exception and the second one just the main class \Exception

so you can have something like

namespace MyNamespace;
class Exception extends \Exception{ }

and then I can

throw new \Exception('Exception from global namespace');
throw new \MyNamespace\Exception('Exception from MyNamespace');

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionNikiCView Question on Stackoverflow
Solution 1 - PhperiscoView Answer on Stackoverflow
Solution 2 - PhpMarcin NabiałekView Answer on Stackoverflow
Solution 3 - PhpKingCrunchView Answer on Stackoverflow
Solution 4 - Phpinf3rnoView Answer on Stackoverflow
Solution 5 - PhpAndyView Answer on Stackoverflow