Array in php in details

Arrays in PHP is a type of data structure that allows us to store multiple elements of similar data type under a single variable thereby saving us the effort of…

0 Comments
Read more about the article PHP Namespaces
xr:d:DAF8KgsCj7E:2,j:2988556349640893025,t:24020802

PHP Namespaces

When your project grows in complexity, you’ll need to integrate the code from others. Sooner or later, you’ll find that your code has different classes with the same name. This problem is…

0 Comments

PHP – Class Constants

Class constants can be useful if you need to define some constant data within a class. A class constant is declared inside a class with the const keyword. A constant cannot…

0 Comments

PHP Constant

Constants are either identifiers or simple names that can be assigned any fixed values. They are similar to a variable except that they can never be changed. They remain constant…

0 Comments