Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/slvler/imdb-service
php curl for IMDb website information
https://github.com/slvler/imdb-service
composer curl imdb imdb-api imdb-webscrapping php php-api php7
Last synced: 8 days ago
JSON representation
php curl for IMDb website information
- Host: GitHub
- URL: https://github.com/slvler/imdb-service
- Owner: slvler
- License: mit
- Created: 2021-09-12T14:19:28.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-20T09:32:21.000Z (16 days ago)
- Last Synced: 2024-10-20T14:51:08.314Z (16 days ago)
- Topics: composer, curl, imdb, imdb-api, imdb-webscrapping, php, php-api, php7
- Language: PHP
- Homepage:
- Size: 40 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Imdb Service
[![tests](https://github.com/slvler/Imdb-service/actions/workflows/tests.yml/badge.svg)](https://github.com/slvler/Imdb-service/actions/workflows/tests.yml)
[![Latest Stable Version](https://poser.pugx.org/slvler/imdb-service/v)](https://packagist.org/packages/slvler/imdb-service)
[![Latest Unstable Version](https://poser.pugx.org/slvler/imdb-service/v/unstable)](https://packagist.org/packages/slvler/imdb-service)
[![License](https://poser.pugx.org/slvler/imdb-service/license)](https://packagist.org/packages/slvler/imdb-service)
[![Total Downloads](https://poser.pugx.org/slvler/imdb-service/downloads)](https://packagist.org/packages/slvler/imdb-service)Connecting to imdb.com with curl and data extraction process
#### Composer
```bash
composer require slvler/imdb-service
```Initialize
------------
```php
All();
print_r($all);
?>
```
#### Title ():
Title:
```php
Title();
print_r($Title);
?>
```
#### Rating ():
Rating:
```php
Rating();
print_r($Rating);
?>
```
#### Vote ():
Vote:
```php
Vote();
print_r($Vote);
?>
```
#### Also Known As ():
Also Known As:
```php
Also_Known_As();
print_r($Also_Known_As);
?>
```
#### Awards ():
Awards:
```php
Awards();
print_r($Awards);
?>
```
#### Director ():
Director:
```php
Director();
print_r($Director);
?>
```
#### Writers ():
Writers:
```php
Writers();
print_r($Writers);
?>
```
#### Stars ():
Stars:
```php
Stars();
print_r($Stars);
?>
```
#### Budget ():
Budget:
```php
Budget();
print_r($Budget);
?>
```
#### Country ():
Country:
```php
Country();
print_r($Country);
?>
```
#### Language ():
Language:
```php
Language();
print_r($Language);
?>
```
#### Color ():
Color:
```php
Color();
print_r($Color);
?>
```
#### Aspect Ratio ():
Aspect Ratio:
```php
Aspect_Ratio();
print_r($Aspect_Ratio);
?>
```
#### Official Sites ():
Official Sites:
```php
Official_Sites();
print_r($Official_Sites);
?>
```
#### Runtime ():
Runtime:
```php
Runtime_M();
print_r($Runtime_M);
?>
```
#### Locations ():
Locations:
```php
Locations();
print_r($Locations);
?>
```
#### Certification ():
Certification:
```php
Certification();
print_r($Certification);
?>
```
#### Plot Summary ():
Plot Summary:
```php
Plot_Summary();
print_r($plotSummary);
?>
```
#### Plot Keywords ():
Plot Keywords:
```php
Plot_Keywords();
print_r($plotKeywords);
?>
```
#### Taglines ():
Taglines:
```php
Taglines();
print_r($taglines);
?>
```
#### Genres ():
Genres:
```php
Genres();
print_r($genres);
?>
```
#### Sound Mix ():
Sound Mix:
```php
Sound_Mix();
print_r($Sound_Mix);
?>
```
#### Movie Connections ():
Movie Connections:
```php
Movie_Connections();
print_r($Movie_Connections);
?>
```
#### Soundtracks ():
Soundtracks:
```php
Soundtracks();
print_r($Soundtracks);
?>
```
#### Crazy Credits ():
Crazy Credits:
```php
Crazy_Credits();
print_r($Crazy_Credits);
?>
```
#### Quotes ():
Quotes:
```php
Quotes();
print_r($Quotes);
?>
```
#### Poster ():
Poster:
```php
Poster();
print_r($Poster);
?>
```
#### Media ($uri):
Media:
```php
Media($uri);
print_r($media);
?>
```