PHP code example of ahmard / uticlass

1. Go to this page and download the library: Download ahmard/uticlass 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/ */

    

ahmard / uticlass example snippets


use Uticlass\Video\CoolMoviez;
use Uticlass\Video\FZMovies;
use Uticlass\Video\NetNaija;

hmp4.htm';
$dlLink1 = FZMovies::init($fzUrl)->get(
    chosenLink: 2, 
    quality: FZMovies::QUALITY_720P
);

//Netnaija
$nnUrl = 'https://www.thenetnaija.com/videos/movies/6856-hot-summer-nights-2017';
$dlLink2 = NetNaija::init($nnUrl)->get()->linkTwo();

//Mycoolmoviez
$mcUrl = 'https://www.coolmoviez.shop/movie/4715/Megafault_(2009)_english_movie.html';
$dlLink3 = CoolMoviez::init($mcUrl)->get();

use Uticlass\Lyrics\Genius;
use Uticlass\Others\ZippyShare;
use Uticlass\Others\FireFiles;

//Genius lyrics
$lyrics = Genius::init('https://genius.com/Taylor-swift-the-last-great-american-dynasty-lyrics')->get();

//ZippyShare
$zippyUrl = 'https://www118.zippyshare.com/v/5pwuoWgg/file.html';
$fileUrl = ZippyShare::init($zippyUrl)->get();

//FireFiles
$webpageUrl = 'https://firefiles.org/5m6rzmnb7v54'; //The Mandalorian S01E06
$fileLink = FireFiles::init($webpageUrl)->get();

use Uticlass\Video\Search\FZMoviesSearch;
use Uticlass\Video\Search\FEMKVComSearch;
use Uticlass\Video\Search\NetNaijaSearch;

ComSearch::create()
    ->search('love')
    ->get();

//NetNaija.com
$searchResults = NetNaijaSearch::create()
    ->search('love')
    ->category(NetNaijaSearch::CAT_VIDEOS)
    ->get(3);
bash
curl -sS https://getcomposer.org/installer | php