PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php // Example string with varying spaces around commas $settingTestSellers = "John, Doe, Jane, Smith, Alice, Bob, Devas"; // Replace instances of " , ", " ,", and ", " with "," echo $cleanedSellers = str_replace([",","\r\n","\r", ",\n"], ",", trim($settingTestSellers)); // Split the cleaned string into an ar ?>
Show:  
Copy Clear