Asked 6 years ago
20 Apr 2017
Views 889
yogi

yogi posted

what is namespace in php ?

what is namespace in PHP ?
and what is use of namespace in PHP ? why should one use namespace in PHP ?
jassy

jassy
answered Apr 24 '23 00:00

In PHP, a namespace is a way to encapsulate a set of related functions, classes, and constants, and give them a unique name to avoid naming conflicts with other code. Namespaces help to organize and structure PHP code, making it easier to manage and maintain, especially in larger applications.

To declare a namespace in PHP, you can use the namespace keyword, followed by the namespace name and curly braces enclosing the code that belongs to that namespace. Here's an example:



namespace MyNamespace;

function myFunction() {
  // function code
}

class MyClass {
  // class code
}

const MY_CONSTANT = 123;

In this example, the MyNamespace namespace is declared, and it contains a function myFunction (), a class MyClass , and a constant MY_CONSTANT . These elements can be accessed using their fully-qualified names, which include the namespace name, like this:



$foo = MyNamespace\myFunction();
$bar = new MyNamespace\MyClass();
$baz = MyNamespace\MY_CONSTANT;

By using namespaces, you can avoid naming conflicts with other code that might use the same names for their functions, classes, or constants. You can also use namespaces to group related code together, making it easier to understand and maintain.
Post Answer