Created
October 21, 2016 10:01
-
-
Save yvan-sraka/cbffaa9eaa8c95c213987475829bd840 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Exercice 2: | |
<?php | |
$string = file_get_contents("films.json", FILE_USE_INCLUDE_PATH); | |
$brut = json_decode($string, true); | |
$top = $brut["feed"]["entry"]; # list of films | |
?> | |
What is the ranking of the movie “Gravity”? | |
<?php | |
$i = 0; | |
foreach($top as $film) { | |
$i = $i + 1; | |
} | |
?> | |
What is the director of “The LEGO Movie”? | |
How many films were released before 2000? | |
What is the most recent film? The oldest? | |
What is the category most represented film? | |
What is the most present director in the top100? | |
How much would it cost to buy the top 10 on iTunes? or rent it? | |
What is the month with the most cinema releases? | |
What are the top 10 films to see with a limited budget? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment