PHP Classes

File: src/test.php

Recommend this page to a friend!
  Classes of Hicri   PHP IMDB Grabber   src/test.php   Download  
File: src/test.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP IMDB Grabber
Get details about movie titles on the IMDB site
Author: By
Last change:
Date: 2 years ago
Size: 1,249 bytes
 

Contents

Class file image Download
<?php

use \qwerty\ImdbCurl as ImdbCurl;


require_once
"autoload.php";


$empty = "https://www.imdb.com/title/tt1056017/releaseinfo";

$a = new ImdbCurl("https://www.imdb.com/title/tt0068646/");

/*
$all = $a->All();
$title = $a->Title();
$rating = $a->Rating();
$vote = $a->Vote();
$aka = $a->Also_Known_As();
$awards = $a->Awards();
$director = $a->Director();
$writers = $a->Writers();
$stars = $a->Stars();
$budget = $a->Budget();
$country = $a->Country();
$lang = $a->Language();

$color = $a->Color();

$aspect = $a->Aspect_Ratio();

$offical = $a->Official_Sites();

$runtime = $a->Runtime_M();

$locations = $a->Locations();

$certificion = $a->Certification();

$plot_summery = $a->Plot_Summary();

$plot_keywords = $a->Plot_Keywords();

$taglines = $a->Taglines();

$genres = $a->Genres();

$sound_mix = $a->Sound_Mix();

$Movie_Connections = $a->Movie_Connections();

$Soundtracks = $a->Soundtracks();

$Crazy_Credist = $a->Crazy_Credits();

$Quotes = $a->Quotes();





$Poster = $a->Poster();


$Cast = $a->Cast();


$awards = $a->Poster();

*/
$uri = "https://www.imdb.com/title/tt0068646/mediaviewer/rm1703430656/";
$media = $a->Media($uri);

print_r($media);