These films come from The Movie Database (TMDB). Here is the real PHP I wrote to fetch and filter them.
public function __construct() { $this->apiUrl = config('tmdb.api_url'); $this->apiToken = config('tmdb.api_token'); }
private function fetchMovies($page = 1, $excludedWords = []) { $response = Http::withToken($this->apiToken) ->get("{$this->apiUrl}/discover/movie", [ 'language' => 'en-US', 'page' => $page, 'with_genres' => '10751' ]); $movies = $response->json(); // Filter out movies containing any of the excluded words $filtered = array_filter($movies['results'] ?? [], function ($movie) use ($excludedWords) { $title = strtolower($movie['title'] ?? $movie['name'] ?? ''); foreach ($excludedWords as $word) { if (strpos($title, strtolower($word)) !== false) { return false; } } return true; }); // Pagination logic $moviesPerPage = 8; $totalMovies = count($filtered); $startIndex = ($page - 1) * $moviesPerPage; return array_slice($filtered, $startIndex, $moviesPerPage); }
private function fetchChristianMovies($page = 1) { $response = Http::withToken($this->apiToken) ->get("{$this->apiUrl}/list/8938", [ 'language' => 'en-US', 'page' => $page ]); return $response->json(); }
private function fetchRecommendations($id) { $response = Http::withToken($this->apiToken) ->get("{$this->apiUrl}/movie/{$id}/recommendations"); return $response->json(); }
Rating: 7.602
While working underground to fix a water main, Brooklyn plumbers—and brothers—Mario and Luigi are tr...
Rating: 7.813
Woody, Buzz, and the rest of Andy's toys haven't been played with in years. With Andy about to go to...
Rating: 7.773
It ain't easy bein' green -- especially if you're a likable (albeit smelly) ogre named Shrek. On a m...
Rating: 7.381
Manny the mammoth, Sid the loquacious sloth, and Diego the sabre-toothed tiger go on a comical quest...
Rating: 6.186
Star race car Lightning McQueen and his pal Mater head overseas to compete in the World Grand Prix r...
Rating: 7.908
When 11-year-old Riley moves to a new city, her Emotions team up to help her through the transition....
Rating: 7.82
Nemo, an adventurous young clownfish, is unexpectedly taken from his Great Barrier Reef home to a de...
Rating: 7.8
Determined to prove herself, Officer Judy Hopps, the first bunny on Zootopia's police force, jumps a...