Google News
logo
PHP - Interview Questions
What is namespaces in PHP?
PHP Namespaces provide a way of grouping related classes, interfaces, functions and constants.

# define namespace and class in namespace
  namespace Modules\Admin\;
  class CityController {
}
# include the class using namesapce
  use Modules\Admin\CityController ;​
Advertisement