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'

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.