Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a variable that stores a number, let's say $num = (double)758341. I wan to break the $num and then insert into an array in ascending or descending order. I am just confused how a number will be broken or tokenized.

share|improve this question
2  
Do you want to break it into array of digits? What do you mean by "break it" – Peter Jan 19 at 11:54
break it means that i want to split it. like 7,5,8,4,3,1 – Baig Jan 19 at 11:58

closed as not a real question by deceze, ЯegDwight, Stony, sevenseacat, talonmies Jan 20 at 7:14

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

up vote 3 down vote accepted

Is this what you are looking for?

$num = (double)758341;

$array = str_split($num);

sort($array);

Result:

Array
(
    [0] => 1
    [1] => 3
    [2] => 4
    [3] => 5
    [4] => 7
    [5] => 8
)
share|improve this answer

use modulus function which gives remainder like

  i=0
  while (num > 0)
  {
    arrayName[i++] = num % 10;
    num = num/10;
  }

and sort the array as you wish....

share|improve this answer
function split_sort_num($num, $order='asc'){
    $arr = str_split($num);
    if ($order=='asc'){
       sort($arr);
    }
    else{
       rsort($arr);
    }
    return $arr;
}


$num = (double)758341;
$asc = split_sort_num($num);
$dsc = split_sort_num($num, 'desc');
print_r($asc);
print_r($dsc);
share|improve this answer

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