Créer un "sous tableau"
Résolu/Fermé
ifr38
Messages postés
21
Date d'inscription
mardi 29 avril 2014
Statut
Membre
Dernière intervention
30 mars 2015
-
7 mai 2014 à 14:43
ifr38 Messages postés 21 Date d'inscription mardi 29 avril 2014 Statut Membre Dernière intervention 30 mars 2015 - 7 mai 2014 à 15:11
ifr38 Messages postés 21 Date d'inscription mardi 29 avril 2014 Statut Membre Dernière intervention 30 mars 2015 - 7 mai 2014 à 15:11
A voir également:
- Créer un "sous tableau"
- Tableau croisé dynamique - Guide
- Créer un compte gmail - Guide
- Créer un compte google - Guide
- Créer un groupe whatsapp - Guide
- Créer un compte instagram sur google - Guide
1 réponse
Pitet
Messages postés
2826
Date d'inscription
lundi 11 février 2013
Statut
Membre
Dernière intervention
21 juillet 2022
525
7 mai 2014 à 14:58
7 mai 2014 à 14:58
Salut,
Tu peux utiliser la fonction array_slice :
Bonne journée
Tu peux utiliser la fonction array_slice :
$a = array('a', 'b', 'c', 'd', 'e', 'f'); $b = array_slice($a, -2, 2); var_dump($b); // array(2) { [0]=> string(1) "e" [1]=> string(1) "f" }
Bonne journée
7 mai 2014 à 15:11
$lines2 = array_slice($lines, count($lines)-1500);
qui me retourne dans mon deuxieme tableau les 1500 dernieres lignes de mon premier tableau ;)
Merci a toi, bonne journée