Jump to content

[SOLVED] Array_unique


JBS103

Recommended Posts

I have another quick question. I have a simple setup like so:

<?php
$aNumber = array(1, 1, 2);
$bNumber = array_unique($aNumber);
?>

This works perfectly, however, print_r creates:

Array ( [0] => 1 [2] => 2  )

Is there a built in function that I can use to make it:

Array ( [0] => 1 [1] => 2  )

 

Or do I need to write my own conditional to reset the array values? I simplified this greatly; when I actually implement it, the array could be 30 elements long with 10 repeats. All values would be numbers however.

 

So I need some sort of function.

 

Thanks.

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/38860-solved-array_unique/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.