Tools, FAQ, Tutorials:
Returning a Value from a Function in PHP
How To Return a Value Back to the Function Caller? in PHP?
✍: FYIcenter.com
You can return a value to the function caller by using the "return $value" statement. Execution control will be transferred to the caller immediately after the return statement. If there are other statements in the function after the return statement, they will not be executed. Here is a PHP script example on how to return values:
<?php
function getYear() {
$year = date("Y");
return $year;
}
print("This year is: ".getYear()."\n");
?>
This script will print:
This year is: 2006
⇒ Passing an Argument to a Function in PHP
⇐ Invoking a User Function in PHP
2016-12-24, ∼2552🔥, 0💬
Popular Posts:
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...
How to convert JSON Objects to PHP Associative Arrays using the json_decode() function? Actually, JS...
How To Avoid the Undefined Index Error in PHP? If you don't want your PHP page to give out errors as...
How to use the "set-body" Policy Statement for an Azure API service operation? The "set-body" Policy...
How to use the "rewrite-uri" Policy Statement for an Azure API service operation? The "rewrite-uri" ...