Is there any difference between return($var); and return $var; other then wrapping it in parentheses?
|
|
|||
|
|
|
Unless you are returning by reference, they mean the same thing. It is preferable to exclude the parentheses. From the docs:
|
|||||||||||||
|
|
From the PHP Manual:
Edit:
This means that there is a difference between |
|||
|
|
(Source) |
|||
|
|
|
The only time I use parenthesis is when returning two values with an array.
This example is different than your initial question, however this is the only instance where I think parenthesis are required. |
|||
|
Yes. If you use parenthesis it will become an expression that PHP will have to solve first, which is a waste of a few CPU cycles. Additionally, you cannot return by reference using This is all clearly stated in the manual. |
|||
|
|
|
It's a language construct, not a function, so both are working almost the same. There are two differences tho. Quoting php.net:
and
Source: php.net |
|||
|
|