PHP Returning Statement Values:
PHP Return statement is used to return a value or control to the calling portion of the program. It is an optional statement. In PHP we can return values, arrays, or object.
If the function is called from within the function then execution will immediately stops, return is also used to stop the eval() statement or script file.
PHP Return Statement Example:
<?php
function
square($var){ return $var*$var;}
echo
"Square of 2 is: ".square(2);?>
Output:
Square of 2 is: 4Example:
<?php
function
fun(){ return array(0,1,2);}
list
($var1,$var2,$var3)=fun();echo
"Value of \$var1= ".$var1."<br/>";echo
"Value of \$var2= ".$var2."<br/>";echo
"Value of \$var3= ".$var3."<br/>";?>
Output:
Value of $var1= 0
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.