Skip to content
Extraits de code Groupes Projets
Valider 5b46ef23 rédigé par Thomas GUBÉNO's avatar Thomas GUBÉNO
Parcourir les fichiers

Traduction des titres en français + ajout de quelques films

parent a7245eb7
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -2,11 +2,11 @@
<?php
function getMoviebyID($id)
{
$tmdb_url = 'https://api.themoviedb.org/3/movie/' . $id . '?api_key=7ac6810245f15284418f2a15b9b22225';
$tmdb_url = 'https://api.themoviedb.org/3/movie/' . $id . '?api_key=7ac6810245f15284418f2a15b9b22225&language=fr-FR';
$movie_json = file_get_contents($tmdb_url);
$movie_array = json_decode($movie_json, true);
$title = $movie_array['original_title'];
$title = $movie_array['title'];
return $title;
......@@ -14,7 +14,7 @@ function getMoviebyID($id)
function getRandomMovie()
{
$input = array(65,500,200,300,600,100,550,115,155,165,175,180,185,215,235,240,275,280,380,415,435,440,475,565,595);
$input = array(65,500,200,300,600,100,550,115,155,165,175,180,185,215,235,240,275,280,380,415,435,440,475,565,595,605,620,640,650,680,710,406,313369,11324);
$random_id = $input[array_rand($input,1)];
return getMoviebyID($random_id);
......
function getMoviebyID($id)
{
$tmdb_url = 'https://api.themoviedb.org/3/movie/' + $id + '?api_key=7ac6810245f15284418f2a15b9b22225';
$tmdb_url = 'https://api.themoviedb.org/3/movie/' + $id + '?api_key=7ac6810245f15284418f2a15b9b22225&language=fr-FR';
$movie_json = file_get_contents($tmdb_url);
$movie_array = json_decode($movie_json, true);
$title = $movie_array['original_title'];
$title = $movie_array['title'];
return $title;
......@@ -12,7 +12,7 @@ function getMoviebyID($id)
function getRandomMovie()
{
$input = array(65,500,200,300,600,100,550,115,155,165,175,180,185,215,235,240,275,280,380,415,435,440,475,565,595);
$input = array(65,500,200,300,600,100,550,115,155,165,175,180,185,215,235,240,275,280,380,415,435,440,475,565,595,605,620,640,650,680,710,406,313369,11324);
$random_id = $input[array_rand($input,1)];
return getMoviebyID($random_id);
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter