I have a PHP array of numbers, which I would like to prefix with a minus (-). I think through the use of explode and implode it would be possible but my knowledge of php is not possible to actually do it. Any help would be appreciated.

Essentially I would like to go from this:

$array = (1,2,3,4,5);

to this:

$array = (-1,-2,-3,-4,-5);

Any ideas?

link|improve this question

Try: $array ( '-' => 1, '-' => 2, '-' => 3, '-' => 4, '-' => 5 ); instead of $array = (1,2,3,4,5); and then foreach( $array as $value ) echo "-" . $value; – B4NZ41 Oct 1 '11 at 1:58
@FernandoCosta better to post that as answers =) – Olli Oct 1 '11 at 5:53
feedback

3 Answers

up vote 3 down vote accepted

lol for real?

foreach ($array as &$value)
   $value *= (-1);

unless the array is a string:

foreach ($array as &$value)
    $value = '-'.$value;
link|improve this answer
Wow. It's been a long day. Thanks for the quick response :) – Martin Oct 1 '11 at 1:54
Pretty sure that first example should be $value *= -1; – Clive Oct 1 '11 at 2:01
Yes Clive is correct. – Martin Oct 1 '11 at 2:16
Fixed. Thank you – Rohit Chopra Oct 1 '11 at 2:43
Nice. The pass by reference is essential. – Peter Ajtai Oct 1 '11 at 4:28
feedback

In this case, Rohit's answer is probably the best, but the PHP array functions can be very useful in more complex situations.

You can use array_walk() to perform a function on each element of an array altering the existing array. array_map() does almost the same thing, but it returns a new array instead of modifying the existing one, since it looks like you want to keep using the same array, you should use array_walk().

To work directly on the elements of the array with array_walk(), pass the items of the array by reference ( function(&$item) ).

Since php 5.3 you can use anonymous function in array_walk:

// PHP 5.3 and beyond!
array_walk($array, function(&$item) { $item *= -1; }); // or $item = '-'.$item;

Working example

If php 5.3 is a little too fancy pants for you, just use createfunction():

// If you don't have PHP 5.3
array_walk($array,create_function('&$it','$it *= -1;'));//or $it = '-'.$it;

Working example

link|improve this answer
feedback

Something like this would do:

array_map(function($val) { return -$val;} , $array)
link|improve this answer
Oops, you got in ahead of me. +1. – Michael Oct 1 '11 at 1:56
Note that this is PHP 5.3+ only (due to the anonymous function), and it returns a new array instead of modifying the existing array (so print_r($array) would show $array unchanged after the above. - If you assign the returned value to $array this'll get the job done nicely. – Peter Ajtai Oct 1 '11 at 4:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.