PHP code example of efremovp / yii2-youtube-helper

1. Go to this page and download the library: Download efremovp/yii2-youtube-helper 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/ */

    

efremovp / yii2-youtube-helper example snippets


use efremovP\youtube\ApiYouTube;


$youtube = new ApiYouTube('Youtube_Api_Key');

$id_youtube_playlist = 'PLdmSK1Qzu984Jnm_YhDcD_Hs5WEB39HoR';
// скачать список видео плейлиста
$video_list = $youtube->getList($id_youtube_playlist);


$key_video = '7JHQ83gho6E';

// получаем массив всех данных на видео
$image_url = $youtube->getImage($key_video);

// получаем иконку на видео
$image_url = $youtube->getImage($key_video);

//дату публикации на видео в формате YYYY-MM-DD HH:MM:SS
$image_url = $youtube->getPublishDate($key_video);


php composer.phar