PHP Questions Home

Categories

Arrays
Files
Forms
Functions
Images
MySQL
Numbers
Others
Strings
Website


PHP Functions

PHP Functions


More PHP

Top Questions
Ask a Question

How do I return a value from a function?


The clue is in the question - you use the keyword 'return'.

The first time you create a function you might do something like this and get confused:

<?php
$value 
20;
function 
timestwo($value) { $result $value 2; }
$doubled timestwo($value);
echo 
"$value doubled is $doubled";
//prints: 20 doubled is
?>


... and you get no value! That's because you need to use 'return' in the function, and it then works:

<?php
$value 
20;
function 
timestwo($value) { $result $value 2; return $result; }
$doubled timestwo($value);
echo 
"$value doubled is $doubled";
//20 doubled is 40
?>



More functions PHP Questions

How do I make a variable from outside a function work in that function?
How do I get a variable in a function to retain its value between calls?
What is a static variable within a function?
What is a function?