PHP code example of lukaswhite / itunes-categories
1. Go to this page and download the library: Download lukaswhite/itunes-categories library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
lukaswhite / itunes-categories example snippets
use Lukaswhite\ItunesCategories\Categories;
$categories = new Categories();
$categories->all();
$categories->get('Sports');
$categories->get('Sports', 'Football');
$categories->get('Kids & Family'); // NOTE we're using the key
$categories->has('Sports') // true
$categories->has('Sports', 'Football'); // true