Class in PHP A class is a blueprint from which you can create the instance, i.e., objects. A class is used to bind data as […]
Read MoreCategory: Developer tips
Passing argument to function in PHP
Passing argument to function PHP provide option to pass the values/parameters to the function, you can pass any number of the parameters to the function […]
Read MorePHP Variable Scope & Superglobal Variables
In PHP, variables can be declared anywhere in the script. PHP has three different variable scopes: local global Local Scope: A variable declared inside the […]
Read MoreFunction in PHP
Function in PHP- PHP functions are similar to other programming languages. A function is a piece of code that takes one more input in the […]
Read MoreVariables & Data Types in PHP
A Variable is simply a container i.e. used to store both numeric and non-numeric information. Variable is the name of a memory location. Rules for […]
Read More