PHP Questions Home | Register | Login
Categories
Arrays
Files
Forms
Creating PDFs
PHP Errors
Functions
Images
MySQL
Numbers
Others
Strings
Website
Unanswered

PHP Forums
Forums Index
MySQL Forum
PHP Forum
Flash/Actionscript
Javascript
Web design

More PHP
PHP Functions
Top Questions
Ask a Question
PHP Interview Questions
PHP Jobs
Ecommerce
IT Questions
Business Websites

Sponsors

sponsor ad
My Salary
PHP Developer Salary
Advertise Here

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
?>



Comment on this Question and Answer >>>

ASK A QUESTION

More functions PHP Questions

Is there a way to use readfile() and not have it display the byte number at the bottom?

How can I call online a PHP function. It works local but when I put it online it does nothing. I call online a php function to load pictures into my flex application. Thanks Bart

how to create a search engine

I have used the funtion Rate (code below) and i have some troubles with it. When i use it with the following values: (Wrong) Excel - RATE(228;-196,02;-49005;961546,464646;1;0,05) gives: 0,0119 Php - RATE(228,-196.02,-49005,961546.464646,1,0.05) gives

how can i get the data by using get(),post()methods?



Custom Search