Jump to content

Can we define variable inside parenthesis ? what's the use


linux1880

Recommended Posts

I have just noticed in a plugin code for wordpress blog. The variable was defined as

 

$wpsb_flds = (get_option('wpsb_form_fields'));

 

How is it possible to put function inside parenthesis ? what is it used for

 

It's simple, although they don't even need to use paranthesis. Try this for example:

function display($var) {
   return $var;
}

$variable = display('test');
$variable2 = (display('test'));

echo "$variable <br/>$variable2"; //Both return 'test'

How is it possible to put function inside parenthesis ?

 

Just as your example shows.

 

what is it used for

 

It is of no benefit in this case, however parenthesis can be used to group expressions together so they are executed in the correct order.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.