Voting

: min(eight, one)?
(Example: nine)

The Note You're Voting On

AJenbo
16 years ago
natsort might not act like you would expect with zero padding, heres a quick sample.

<?php
$array
= array('09', '8', '10', '009', '011');
natsort($array);
?>
/*
Array
(
[3] => 009
[4] => 011
[0] => 09
[1] => 8
[2] => 10
)
*/

<< Back to user notes page

To Top