Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The "syntax error unexpected ','" error is occurring here:

$foo1 = ($foo2, true);

Is the comma not suppose to be there?

share|improve this question
3  
what are you trying to do? – dutt Dec 28 '10 at 7:32
Yep. You probably mean something like foo($foo2, true);, the function name being the difference. ;) – netcoder Dec 28 '10 at 7:32
what are you trying to do there ? usualy you use () for math , passing function arguments arrays or whatever but you're not doing any of those – Poelinca Dorin Dec 28 '10 at 7:36

closed as too localized by cryptic ツ, NullPoiиteя, Lusitanian, rdlowrey, Rikesh Mar 21 at 5:06

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

up vote 3 down vote accepted

You are either trying to create an array:

$foo1 = array($foo2, true);

Or calling a function:

$foo1 = myFunc($foo2, true);

Or trying to use a C comma expression, which PHP does not support (then again in that case $foo1 would just be assigned to true).

share|improve this answer
btw, array() is also function :) – heximal Dec 28 '10 at 7:54
2  
@heximal: No, it's a language construct. The manual lists it as a function only because it does the same for include, require, echo, print, etc, which are all language constructs. Syntactically you can call them like functions, but they're not. – BoltClock Dec 28 '10 at 7:56

This is not a valid php expression.

$foo =myfunc($foo2, true);

Will call the function myfunc with the parameters $foo2 and true. The result will then be assigned to $foo.

$foo = array($foo2, true);

Will create a new array with two elements($foo2 and true)

$foo = ($foo2, true);

Will just throw a parse error because the only valid symbols between to variables in this context are operators(+,-,%,AND,...).

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.