How to create default function parameter in PHP? Last Updated : 12 Jul, 2025 Comments Improve Suggest changes 1 Likes Like Report The default parameter concept comes from C++ style default argument values, same as in PHP you can provide default parameters so that when a parameter is not passed to the function. Then it is still available within the function with a pre-defined value. This function also can be called optional parameter. Syntax: function greeting($name=" parameter_value ") Parameter: This function accepts a single parameter that is $name here, holds the parameter value. Below examples illustrate the procedure to create and use the default function parameter. Example 1: php <?php function greeting($name="GeeksforGeeks") { echo "Welcome to $name "; echo("\n"); } greeting("Gfg"); // Passing no value greeting(); greeting("A Computer Science Portal"); ?> Output: Welcome to Gfg Welcome to GeeksforGeeks Welcome to A Computer Science Portal Example 2: php <?php function welcome($first="GeeksforGeeks", $last="A Computer Science Portal for Geeks") { echo "Greeting: $first $last"; echo("\n"); } welcome(); welcome("night_fury"); welcome("night_fury","Contributor"); ?> Output: Greeting: GeeksforGeeks A Computer Science Portal for Geeks Greeting: night_fury A Computer Science Portal for Geeks Greeting: night_fury Contributor Create Quiz Comment N night_fury1 Follow 1 Improve N night_fury1 Follow 1 Improve Article Tags : Web Technologies PHP PHP-basics Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like