IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Langage PHP Discussion :

Tri tableau multidimensionnel


Sujet :

Langage PHP

  1. #1
    Candidat au Club
    Inscrit en
    Novembre 2006
    Messages
    5
    Détails du profil
    Informations forums :
    Inscription : Novembre 2006
    Messages : 5
    Points : 2
    Points
    2
    Par défaut Tri tableau multidimensionnel
    Bonjour à tous,
    J'ai un problème, j'ai un tableau multidimensionnel de ce type :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    Array
    (
        [1] => Array
            (
                [0] => Array
                    (
                        [titre] => aezaeza
                        [pere] => 0
                        [cpt] => 907
                        [theme_actif] => 0
                        [id] => 3
                        [idrewrite] => 3
                        [tri] => 0
                    )
     
                [1] => Array
                    (
                        [titre] => dsqdsqdsqd
                        [pere] => 0
                        [cpt] => 704
                        [theme_actif] => 0
                        [id] => 2
                        [idrewrite] => 2
                        [tri] => 0
                    )
     
                [2] => Array
                    (
                        [titre] => sfdfdcsdcds
                        [pere] => 0
                        [cpt] => 127
                        [theme_actif] => 0
                        [id] => 4
                        [idrewrite] => 4
                        [tri] => 0
                    )
     
            )
     
        [2] => Array
            (
                [0] => Array
                    (
                        [titre] => ezaezaeza
                        [pere] => 0
                        [cpt] => 107
                        [theme_actif] => 0
                        [id] => 874
                        [idrewrite] => 874
                        [tri] => 0
                    )
     
                [1] => Array
                    (
                        [titre] => ezaeza
                        [pere] => 0
                        [cpt] => 497
                        [theme_actif] => 0
                        [id] => 7
                        [idrewrite] => 7
                        [tri] => 0
                    )
     
                [2] => Array
                    (
                        [titre] => ezaeza
                        [pere] => 0
                        [cpt] => 1302
                        [theme_actif] => 0
                        [id] => 8
                        [idrewrite] => 8
                        [tri] => 0
                    )
     
                [3] => Array
                    (
                        [titre] => TU
                        [pere] => 0
                        [cpt] => 419
                        [theme_actif] => 0
                        [id] => 33
                        [idrewrite] => 33
                        [tri] => 0
                    )
     
               )
        [3] => Array
            (
                [0] => Array
                    (
                        [titre] => fdsfsd
    					[pere] => 0
                        [cpt] => 1
                        [theme_actif] => 0
                        [id] => 874
                        [idrewrite] => 874
                        [tri] => 0
                    )
     
                [1] => Array
                    (
                        [titre] => fdsfsdfd
                        [pere] => 0
                        [cpt] => 6
                        [theme_actif] => 0
                        [id] => 7
                        [idrewrite] => 7
                        [tri] => 0
                    )
     
                [2] => Array
                    (
                        [titre] => zaezaea
                        [pere] => 0
                        [cpt] => 7
                        [theme_actif] => 0
                        [id] => 8
                        [idrewrite] => 8
                        [tri] => 0
                    )
     
                [3] => Array
                    (
                        [titre] => fdsfsd
                        [pere] => 0
                        [cpt] => 2
                        [theme_actif] => 0
                        [id] => 33
                        [idrewrite] => 33
                        [tri] => 0
                    )
     
               )
    Et j'aimerai classer par cpt à l'intérieur de ce tableau par la clé "cpt" pour obtenir quelque chose du type suivant :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    Array
    (
        [1] => Array
            (
                [0] => Array
                    (
                        [titre] => sfdfdcsdcds
                        [pere] => 0
                        [cpt] => 127
                        [theme_actif] => 0
                        [id] => 4
                        [idrewrite] => 4
                        [tri] => 0
     
                    )
     
                [1] => Array
                    (
                        [titre] => dsqdsqdsqd
                        [pere] => 0
                        [cpt] => 704
                        [theme_actif] => 0
                        [id] => 2
                        [idrewrite] => 2
                        [tri] => 0
                    )
     
                [2] => Array
                    (
    					[titre] => aezaeza
                        [pere] => 0
                        [cpt] => 907
                        [theme_actif] => 0
                        [id] => 3
                        [idrewrite] => 3
                        [tri] => 0
                    )
     
            )
     
        [2] => Array
            (
                [0] => Array
                    (
                        [titre] => ezaezaeza
                        [pere] => 0
                        [cpt] => 107
                        [theme_actif] => 0
                        [id] => 874
                        [idrewrite] => 874
                        [tri] => 0
                    )
     
                [1] => Array
                    (
                        [titre] => TU
                        [pere] => 0
                        [cpt] => 419
                        [theme_actif] => 0
                        [id] => 33
                        [idrewrite] => 33
                        [tri] => 0
                    )
     
                [2] => Array
                    (
    					[titre] => ezaeza
                        [pere] => 0
                        [cpt] => 497
                        [theme_actif] => 0
                        [id] => 7
                        [idrewrite] => 7
                        [tri] => 0
                    )
     
                [3] => Array
                    (
                        [titre] => ezaeza
                        [pere] => 0
                        [cpt] => 1302
                        [theme_actif] => 0
                        [id] => 8
                        [idrewrite] => 8
                        [tri] => 0
                    )
     
               )
        [3] => Array
            (
                [0] => Array
                    (
                        [titre] => fdsfsd
    					[pere] => 0
                        [cpt] => 1
                        [theme_actif] => 0
                        [id] => 874
                        [idrewrite] => 874
                        [tri] => 0
                    )
     
                [1] => Array
                    (
                        [titre] => fdsfsd
                        [pere] => 0
                        [cpt] => 2
                        [theme_actif] => 0
                        [id] => 33
                        [idrewrite] => 33
                        [tri] => 0
                        [titre] => zaezaea
                    )
     
                [2] => Array
                    (
                        [titre] => fdsfsdfd
                        [pere] => 0
                        [cpt] => 6
                        [theme_actif] => 0
                        [id] => 7
                        [idrewrite] => 7
                        [tri] => 0
                    )
     
                [3] => Array
                    (
     
                        [pere] => 0
                        [cpt] => 7
                        [theme_actif] => 0
                        [id] => 8
                        [idrewrite] => 8
                        [tri] => 0
    	                )
     
               )

    Merci d'avance !

  2. #2
    Expert éminent sénior

    Profil pro
    Inscrit en
    Septembre 2010
    Messages
    7 920
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2010
    Messages : 7 920
    Points : 10 727
    Points
    10 727
    Par défaut
    utilise array_multisort

  3. #3
    Candidat au Club
    Inscrit en
    Novembre 2006
    Messages
    5
    Détails du profil
    Informations forums :
    Inscription : Novembre 2006
    Messages : 5
    Points : 2
    Points
    2
    Par défaut
    non mais le tableau est dynamique et construit au fur et à mesure...
    de plus avec array multisort je ne vois pas comment cette fonction pourrait le trier par "cpt"

  4. #4
    Nouveau Candidat au Club
    Femme Profil pro
    Chef de projet en SSII
    Inscrit en
    Juin 2012
    Messages
    1
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : Grèce

    Informations professionnelles :
    Activité : Chef de projet en SSII
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Juin 2012
    Messages : 1
    Points : 1
    Points
    1
    Par défaut
    Utilise usort en lui passant ta propre fonction

  5. #5
    Expert éminent sénior

    Profil pro
    Inscrit en
    Septembre 2010
    Messages
    7 920
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Septembre 2010
    Messages : 7 920
    Points : 10 727
    Points
    10 727
    Par défaut
    Citation Envoyé par skrime Voir le message
    non mais le tableau est dynamique et construit au fur et à mesure...
    aucun probleme

    Citation Envoyé par skrime Voir le message
    de plus avec array multisort je ne vois pas comment cette fonction pourrait le trier par "cpt"
    regarde l'exemple #3 c'est dans le même esprit

Discussions similaires

  1. Problème Tri Tableau multidimensionnel
    Par dadadoux dans le forum Langage
    Réponses: 5
    Dernier message: 02/10/2009, 15h22
  2. Réponses: 7
    Dernier message: 02/07/2008, 17h06
  3. Réponses: 2
    Dernier message: 04/11/2007, 09h43
  4. Réponses: 2
    Dernier message: 15/05/2007, 17h56
  5. [Tableaux] tri sur un tableau multidimensionnel
    Par maysa dans le forum Langage
    Réponses: 3
    Dernier message: 11/04/2007, 09h53

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo