Return
Value From Function
जब भी कोई php का Function किसी न किसी प्रकार की value return करता है तो वह फंक्शन return type Function कहलाता है और जो function value return करता है वह जहा से function को call किया गया है वह return की जाती है
Return Type Function का Example निचे दिया गया है
<?php
function
f1()
{
$a=20;
$b=10;
return
$a+$b;
}
$res=f1();
echo
"Sum :".$res;
?>
Comments
Post a Comment