linux1880 Posted January 13, 2010 Share Posted January 13, 2010 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 Link to comment https://forums.phpfreaks.com/topic/188298-can-we-define-variable-inside-parenthesis-whats-the-use/ Share on other sites More sharing options...
oni-kun Posted January 13, 2010 Share Posted January 13, 2010 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 https://forums.phpfreaks.com/topic/188298-can-we-define-variable-inside-parenthesis-whats-the-use/#findComment-994055 Share on other sites More sharing options...
trq Posted January 13, 2010 Share Posted January 13, 2010 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 https://forums.phpfreaks.com/topic/188298-can-we-define-variable-inside-parenthesis-whats-the-use/#findComment-994056 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.