Natürliche Sortierung mit usort

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Natürliche Sortierung mit usort

    Hallo,

    habe mich nach langen hin und her schlagen nun mit usort "angefreundet", nur leider weiß ich nicht wie ich damit eine natürliche Sortierung hinbekomme :-(

    hier mal mein Code:

    PHP Code:
    function cmp($a$b) {
        return 
    strcmp($a["bild"], $b["bild"]);
    }

    usort($bilder"cmp"); 
    Wie bekome ich nun eine natürliche sortierung hin?
    Last edited by Laire; 31-10-2007, 22:47.

  • #2
    strnatcmp??

    Comment

    Working...
    X