<?php $countries = [' United States', 'Argentina', ' France']; $countriesClean = array(); foreach($countries as $country) { $cleanCountry = ltrim($country); array_push($countriesClean, $cleanCountry); } print_r($countries); print_r($countriesClean); ?>
You have javascript disabled. You will not be able to edit any code.