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 this PHP code:

foreach( $wpdb->get_results(
) as $key => $row) {

echo "['". $row->DATE . "',". $row->total_sales . "],";

}

That produces this:

['09-08-11',0],['09-09-11',0],['09-10-11',0],['09-11-11',0],

How do I remove the last comma in the foreach loop?

share|improve this question

6 Answers

There are a few approaches:

  1. Push the strings into an array and use implode()
  2. Add the bits to a string, remove the last character, then echo the string
  3. Iterate more explicitly, and on the last iteration, don't output the ','

Of those options, I'd probably use #1, because it makes the code just a bit more self-documenting.

share|improve this answer
5  
Upvote for approach #1. – Jimmy Sawczuk Sep 11 '11 at 3:47

php has a trim function, give it a string and the comma.

$s = trim ($s,",")
share|improve this answer

You'll need variable to store comma state:

$comma = ""; ## don't need comma before first element
foreach( $wpdb->get_results(
    ) as $key => $row) {

    echo $comma."['". $row->DATE . "',". $row->total_sales . "]";
    $comma = ",";
}
share|improve this answer
Thanks, your code works wonders :) – MattStrange Sep 11 '11 at 3:58

I usually do it this way..

$result = array();

foreach( $wpdb->get_results() as $key => $row ){

    $result[] = "['". $row->DATE . "',". $row->total_sales . "]";

}

echo implode( ',', $result );

It's a bit more succinct, (but perhaps more memory inefficient due to the temporary array).

share|improve this answer

I like the implode idea, but I often use the ternary operator to keep everything succinct. Many people don't like the ternary, but it is a very well-known construct in many languages so I use it. In this case, if I'm on the first iteration $results will be empty so I don't insert a comma, otherwise I put a comma in the content before the new data:

$results = '';
foreach( $wpdb->get_results() as $key => $row) {

    $results .= (empty($results) ? '' : ',') . "['". $row->DATE . "',". $row->total_sales . "]";

}
echo $results;
share|improve this answer
$numItems = count($wpdb->get_results());
$i = 0;

foreach( $wpdb->get_results() as $key => $row) {
if($i+1 == $numItems) {
    echo "['". $row->DATE . "',". $row->total_sales . "]";
  }
else{
echo "['". $row->DATE . "',". $row->total_sales . "],";

}
  $i++;
}
share|improve this answer
1  
this code is redundant – Your Common Sense Sep 11 '11 at 6:33

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.