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.

I have seen examples like the following:

$data = array(
   'username' => $user->getUsername(),
   'userpass' => $user->getPassword(),
   'email' => $user->getEmail(),
);

However, in practice I have always not left the trailing comma. Am I doing something wrong, or is this just 'another' way of doing it? If I was using a framework would not having the trailing comma affect code generation negatively? I have seen the use of trailing commas in array declarations in other languages (Java, C++) as well, so I assume the reasons for leaving trailing commas are not specific to PHP, but this has piqued my interest.

share|improve this question
I could have sworn I was getting parse errors when I left training commas in PHP. – Lotus Notes May 13 '10 at 19:49
It's possible, I guess. In this particular example it parses just fine. – ashurexm May 13 '10 at 20:54

5 Answers

up vote 22 down vote accepted

Why do PHP Array Examples Leave a Trailing Comma?

Because they can. :)

Seriously, this is entirely for convenience so you can easily add another element to the array without having to first add the trailing comma to the last entry.

Speaking of other languages: Be careful with this in JavaScript. Firefox will leniently tolerate trailing commas; Internet Explorer will, rightly, throw an error.

share|improve this answer
This is what I figured, I just wasn't sure if I was missing the boat on something. I guess for people who spend their time in a few languages that allow this, it's probably a decent habit. But given that I deal with a lot of different languages, and as you said JavaScript (and who knows what other languages) could throw errors, it might be safer for me to continue my habit of not leaving a trailing comma. – ashurexm May 13 '10 at 21:38
@manyx yup, nothing wrong with that. I'm not sure either whether being able to keep trailing commas is a good thing. It looks like a syntax error when reviewing code. – Pekka 웃 May 13 '10 at 21:51
Newer versions of JavaScript than IE6/7 code for explicitly permit it, now. – staticsan May 14 '10 at 4:04
@Pekka And convenience for removing in addition to adding an entry to the array – Nam G. VU Oct 30 '11 at 12:42
By the way, Python is another language that deliberately allows a trailing comma for ease of adding more entries. I wish JavaScript had – callum May 29 '12 at 19:45
show 3 more comments

I feel that even though it is allowed it is bad practice, its like leaving out the last semi colon of your functions and loops.

share|improve this answer

I can't speak for other people, but I usually leave a trailing comma in my code. I do so because if/when I later add to the array, I do not have to worry about missing out a comma due to forgetting to add a comma to what was previously the last line.

share|improve this answer

I'm always doing trailing comma because it helps to avoid syntax errors while adding new array elements... it's just a good practice.

share|improve this answer
I'm sorry for reviving this but, how does a trailing comma prevent syntax errors later on? I've just found out that PHP allows for the trailing comma - but I cannot see/find the use for it. Adding new indexes later on is still done through $arr[] = .... – Daniel Nov 20 '12 at 11:29
@Daniel, he's talking about returning to the source code later and adding another line to the array literal. – Sam Dufel Jan 30 at 0:56

This is a good practice when defining array on multiple lines. It's also encouraged by ZendFramework's coding standards:

When using this latter declaration, we encourage using a trailing comma for the last item in the array; this minimizes the impact of adding new items on successive lines, and helps to ensure no parse errors occur due to a missing comma.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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