- var_dump: documentation ( source)
- sort: documentation ( source)
- max: documentation ( source)
<?php
$new_array = array(
"8000",
"12345",
"6811-1",
"7031",
"6841"
);
var_dump(max($new_array)); // would expect 8000, but returns 7031
sort($new_array);
var_dump($new_array); // the sorted array is wonky... why isn't 8000 at the end?