Deprecated: stripslashes(): Passing null to parameter #1 ($string) of type string is deprecated in /home/webodisha/public_html/includes/functions/common.php on line 116
Anonymous functions in PHP | WebOdisha.in

Anonymous functions in PHP

Anonymous functions, also known as closures, allow the creation of functions which have no specified name. They are most useful as the value of callback parameters, but they have many other uses.

Example

<?php
$add = function(a,b) {
echo a+b;
};
$add(1,2);
?>

webodisha.in