PHP code example of leewillis77 / cached-embed
1. Go to this page and download the library: Download leewillis77/cached-embed 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/ */
leewillis77 / cached-embed example snippets
use Leewillis77\CachedEmbed\CachedEmbed;
$data = CachedEmbed::create('https://www.youtube.com/watch?v=dQw4w9WgXcQ');
use Leewillis77\CachedEmbed\CachedEmbed;
$data = CachedEmbed::create(
'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
[ 'choose_bigger_image' => true ]
);
use Leewillis77\CachedEmbed\CachedEmbed;
$data = CachedEmbed::create(
'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
[ 'choose_bigger_image' => true ],
30
);