i
PHP Variables
PHP Data Types
PHP Echo & Print
PHP Strings
PHP Numbers
PHP Constants
PHP Operators
PHP if...else...elseif Statements
Switch Statement
PHP Loops
PHP Arrays
Superglobals
PHP Coding Standards
PHP Form Handling
PHP Form Validation
PHP URLs Validation
PHP Form Required Validation
Complete Form Example
PHP File Functions Open/Read
PHP File Create/Write
PHP File Upload
PHP Cookies Handling
PHP Session Handling
PHP filter_var() Function
PHP Validation Filters
PHP Sanitization Filters
Using Filters
Filters Advanced
JSON
PHP Date and Time
MySQL Database
MySQL Connect
MySQL Commands-Creating a Table
MySQL Commands-Inserting The data
MySQL Commands-Prepared Statement
MySQL Commands-Selecting The Data
MySQL Commands-Where and Order By
MySQL Commands-Deleting And Updating The Data
PHP-OOP Introduction
PHP-Classes/Objects
PHP-Constructor/Destructor
PHP-Access Modifiers
PHP-Inheritance
PHP-Inheritance and Protected Access Modifier
PHP-Overriding Inherited Methods
PHP-Final keyword
PHP-Abstract Classes
PHP-Constants
PHP-Traits
PHP-Static Methods and Properties
Introduction to Functions
Defining A function
Returning Values From A Function
Dynamic Function Calls
Variable Scope
Understanding Arguments Or Parameters
Testing For A Function Existence
Returning Multiple Values From A Function
Making practical Use By Building Code Libraries For Code Re-usability
Using Include() And Require()
Dynamic function calls in php mean you can pass the function name to a variable, and the variable will act as a function dynamically. And you can call the variable as function whenever you want the function to be executed.
For example, The below code will also give the same result as 20, and the variable $product acts like a function.
function Multiply($num1, $num2)
{
$result=$num1 * $num2 ;
return $result;
}
$product = “Multiply”;
$product(4,5);
echo “ The result is $product”;
?>
We can also call a function inside a function, and the parameter of the second function will behave like a function itself. It is dynamic calling a function through function.
function square($num)
{
echo $num*$num;
}
function caller($num1, $num2)
{
$num1($num2);
}
caller(‘square’,5);
?>
In the above example, the output will be 25. The caller function accepts two parameters, and we have given $num1 as a function, i.e. square. So, it dynamically calls the function inside a function and returns the square of $num2, i.e. 5.
Don't miss out!