The "syntax error unexpected ','" error is occurring here:
$foo1 = ($foo2, true);
Is the comma not suppose to be there?
|
The "syntax error unexpected ','" error is occurring here:
Is the comma not suppose to be there? |
|||
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.
|
You are either trying to create an array:
Or calling a function:
Or trying to use a C comma expression, which PHP does not support (then again in that case |
|||||||
|
|
This is not a valid php expression.
Will call the function myfunc with the parameters $foo2 and true. The result will then be assigned to $foo.
Will create a new array with two elements($foo2 and true)
Will just throw a parse error because the only valid symbols between to variables in this context are operators(+,-,%,AND,...). |
|||
|
|
foo($foo2, true);, the function name being the difference. ;) – netcoder Dec 28 '10 at 7:32