Tri array php
Résolu/Fermé
djflexlive
Messages postés
557
Date d'inscription
mercredi 26 mars 2008
Statut
Membre
Dernière intervention
23 avril 2015
-
1 mars 2011 à 19:30
djflexlive Messages postés 557 Date d'inscription mercredi 26 mars 2008 Statut Membre Dernière intervention 23 avril 2015 - 1 mars 2011 à 23:00
djflexlive Messages postés 557 Date d'inscription mercredi 26 mars 2008 Statut Membre Dernière intervention 23 avril 2015 - 1 mars 2011 à 23:00
A voir également:
- Tri array php
- Tri excel - Guide
- Easy php - Télécharger - Divers Web & Internet
- Logiciel tri photo gratuit - Guide
- Get_magic_quotes_gpc php 8 ✓ - Forum PHP
- En cours de traitement sur le site de tri local ✓ - Forum Consommation & Internet
2 réponses
vincebzh
Messages postés
137
Date d'inscription
lundi 22 mars 2010
Statut
Contributeur
Dernière intervention
7 mai 2013
29
1 mars 2011 à 21:11
1 mars 2011 à 21:11
Salut.
https://www.php.net/manual/fr/function.sort.php
La fonction retourne un booléen en non pas le tableau trié.
Le tableau est passé par référence, ce qui veux dire que tu n'as pas besoin de stocker le retour de la fonction dans une variable. En fois passée dans la fonction sort, $HARD_BOUNCE_STRG contiendra le tableau trié.
https://www.php.net/manual/fr/function.sort.php
La fonction retourne un booléen en non pas le tableau trié.
Le tableau est passé par référence, ce qui veux dire que tu n'as pas besoin de stocker le retour de la fonction dans une variable. En fois passée dans la fonction sort, $HARD_BOUNCE_STRG contiendra le tableau trié.
$HARD_BOUNCE_STRG = array('d','b','p','e'); print_r($HARD_BOUNCE_STRG); sort($HARD_BOUNCE_STRG); print_r($HARD_BOUNCE_STRG); exit();
djflexlive
Messages postés
557
Date d'inscription
mercredi 26 mars 2008
Statut
Membre
Dernière intervention
23 avril 2015
95
1 mars 2011 à 23:00
1 mars 2011 à 23:00
En effet ... merci lol ;)