foreach() is your friend for this type of operation.

foreach($someArray as $value){
        $new_array[]= str_replace(' ','', $value);
}

OR

foreach($someArray as $value){
        echo str_replace(' ','', $value) . "<br />\n";
}



kvigor wrote:
Need to remove all spaces from Array Values... And this doesn't work.

This is similar info that's within array values: $someArray[0] = "PHP is awesome"; s/b PHPisawesome This is similar info that's within array values: $someArray[1] = "The Toy Boat"; s/b TheToyBoat

Begin Code===================================
$num = count($someArray);

for($num = 0; $cntr < $num; $cntr++)
{
 str_replace(' ','',$someArray[$num]);
 echo "$someArray[$num]<br />";
}
End Code===================================

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to