How to Pass Optional Paramater to a Function in PHP

Code

For example you have a class named Textstyle with the ff functions.
  1. Class Textstyle{
  2. public function toUpper($string = NULL){
  3. return strtoupper($string);
  4. }
  5. }
To make the parameter optional, we need to define the initial value of the parameter to NULL. This way if we don't pass anything, it won't throw an error. Try accessing our class and don't pass anything and it won't throw an error but if you remove the NULL initial value, it will throw an error. That ends this tutorial. Happy Coding :)

Add new comment