Stripping last comma from a foreach loop in PHP?


Below is the code that can be used to strip the last comma from the foreach loop −

Example

 Live Demo

$result_str = array("Hi", "Hello", "have a", "good day");
foreach ($results as $result) {
   $result_str[] = $result->name;
}
echo implode(",",$result_str);

Output

This will produce the following output −

Hi,Hello,have a,good day

Updated on: 06-Apr-2020

636 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements