What is a namespace and how is it implemented in PHP?

后端 未结 4 1942
清歌不尽
清歌不尽 2021-02-03 14:28

I\'ve heard the latest PHP has support for namespaces. I know variables defined in the global scope have no namespace, so how does one make a variable in a different na

4条回答
  •  渐次进展
    2021-02-03 15:13

    Namespaces are often used with libraries, the ability to reference the library code with 1 single namespace helps to not clobber up others that are already being used.

提交回复
热议问题