I have a code php
foreach ($cities as $city) {
echo substr($city->name . ", ", 0, -2);
}
result is: a, b, c, d, e,
How to remove "," in foreach()
Exactly: a, b, c, d, e
|
I have a code php
How to remove "," in foreach()
|
|||
|
You could achieve the same with less code, by using the implode function.
Should give you exactly what you want. |
|||
|
|
|
|||
|
|
|
In this context you can not remove the last comma without additional tags. You have two other options: 1. Use the standard for loop:
2. Create a result string in the foreach, remove the last character and than print it. |
|||
|
|
|
|
||||
|
|
|
|||
|
|
|
Change it a bit to something like:
|
|||
|
|
|
Method 1 :
Method 2:
|
||||
|
,from the string. other logic is also there but it will be a overhead for such small task – Hemant Metalia Dec 28 '11 at 8:29