vote up -2 vote down star

Hi, something seems to be wrong with the first line of this if function, seems alright to me though.

if ($count1 == sizeof($map) && $count2 == sizeof($map[0])){
echo ";";
}else{
echo ",";
}

This is the error I get (line 36 is the first line of the above line.)

Parse error: parse error in C:\wamp\www\game\mapArrayConvertor.php on line 36

EDIT: The OP notes in an answer below that the error was a missing semi-colon on line 35 and not the code included in the question.

flag

What is wrong with it? Are you seeing an error when you run it? – Andrew Hare Apr 10 at 12:46
ghastly formatting to if this is what is actually looks like in your app. Good formating helps prevent errors - put brackets around each subclause in the if and use a recognised bracket layout (not }else{ on the same line) – Cruachan Apr 10 at 12:51
and indent those echo statements – Cruachan Apr 10 at 12:52
Sorry, I rarely use indentation in my code, just the way I do things. – Ryan Apr 10 at 12:56
the wrong way, in other words – Neil Butterworth Apr 10 at 13:38

6 Answers

vote up 1 vote down

There appears to be nothing wrong with the syntax of your code. If the behavior is not what you expect, please post more details regarding the value of the variables and the intended and actual behavior of the code.

link|flag
vote up 6 vote down

I don't see anything wrong with the code you have posted, so chances are the error is on a previous line. Perhaps a missed semicolon? Mismatched braces or parentheses?

link|flag
vote up 5 vote down

check the line 35, it could be that line is wrong.

link|flag
Oh boy, seems I missed a ";" on line 35, I really must check my code more thoroughly before posting on here, sorry guys :s – Ryan Apr 10 at 12:53
it is usually the previous line :) – chosta Apr 10 at 12:54
vote up 0 vote down

Seems I missed a ";" on line 35, sorry guys.

link|flag
No need to apologise, everyone learns this one :) – Ross Apr 10 at 13:28
This is a notorious PHP error. The ubiquitous missing semi-colon generic error message! lol! – Gary Willoughby Apr 10 at 13:51
vote up 3 vote down

You could try:

if (($count1 == sizeof($map)) && ($count2 == sizeof($map[0]))){
  //blabla
}
link|flag
I prefer the ().... as well. – altCognito Apr 10 at 13:08
vote up 0 vote down

You already found the problem, but... if this is just turning an array into a comma separated list, you could use the implode command to do it for you.

link|flag

Your Answer

Get an OpenID
or

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