Bonjour,
C’est exactement cela, bien jouer ! Je n’avais tester $i qu’avec de petites valeurs, mais dès que j’entre des grosses valeurs j’obtiens une erreur.
Enfaite en faisant un print_r($films); je me suis rendu compte que tout les tableaux ne disposait pas de la case [‘titre’].
voici le résultat d’un print_r :
[CODE]
Array
(
[0] => Array
(
[id] => 19776
[titre-original] => The Matrix
[titre] => Matrix
[annee-production] => 1999
[casting] => Larry Wachowski, Andy Wachowski, Keanu Reeves, Laurence Fishburne, Carrie-Anne Moss, Hugo Weaving, Joe Pantoliano
[poster] => http://images.allocine.fr/medias/04/34/49/043449_af.jpg
)
[1] => Array
(
[id] => 28546
[titre-original] => The Matrix Revolutions
[titre] => Matrix Revolutions
[annee-production] => 2002
[casting] => Andy Wachowski, Larry Wachowski, Keanu Reeves, Laurence Fishburne, Carrie-Anne Moss, Hugo Weaving, Jada Pinkett Smith
[poster] => http://images.allocine.fr/medias/nmedia/18/35/14/64/18364977.jpg
)
[2] => Array
(
[id] => 28540
[titre-original] => The Matrix Reloaded
[titre] => Matrix Reloaded
[annee-production] => 2002
[casting] => Andy Wachowski, Larry Wachowski, Keanu Reeves, Laurence Fishburne, Carrie-Anne Moss, David Roberts, Hugo Weaving
[poster] => http://images.allocine.fr/medias/nmedia/00/02/53/34/affiche.jpg
)
[3] => Array
(
[id] => 174412
[titre-original] => The Matrix New Generation
[titre] => Matrix NG
[annee-production] => 2005
[casting] => Yannik Ladegaillerie, Arno Minetti, Jean-Baptiste Bregeon, Jean-Baptiste Robin, Lamine Sylla, Pierre Marty
[poster] => http://images.allocine.fr/medias/nmedia/18/73/06/67/19188764.jpg
)
[4] => Array
(
[id] => 180459
[titre-original] => Sex and the Matrix
[annee-production] => 2000
[casting] => Joel Gallen, Sarah Jessica Parker, Kim Cattrall, Kristin Davis, Cynthia Nixon, Jimmy Fallon
)
[5] => Array
(
[id] => 177011
[titre-original] => Matrix III
[annee-production] => 1972
)
[6] => Array
(
[id] => 30763
[titre-original] => Commando
[annee-production] => 1985
[casting] => Mark L. Lester, Arnold Schwarzenegger, Rae Dawn Chong, Dan Hedaya, Vernon Wells, Alyssa Milano
[poster] => http://images.allocine.fr/medias/nmedia/18/36/14/93/18455837.jpg
)
)[/CODE]
du coup un simple :
<?php
foreach ($films as $film)
{
if (isset($film['titre']))
{
echo $film['titre'] ;
}
}?>
résous le problème.
Merci de ton aide, je me demande pourquoi est-ce que je n’y ai pas pensé avant !! En tout cas je te remercie énormément !