what is a namespace in php?

1 0
2 years ago 734 views
A Namespace in PHP is used to encapsulate the items which are similar to that of abstraction in Object Oriented programming concepts.
PHP

what are traits?

1 0
2 years ago 794 views
Traits are a mechanism that allows you to create reusable code in languages like PHP where multiple inheritance is not supported.
PHP

What is a session in php?

1 0
3 years ago 1270 views
A session in PHP is a way to store information to be used across multiple pages of an entire website.
PHP