Y
Y
Yuri2017-01-05 01:36:34
YouTube
Yuri, 2017-01-05 01:36:34

YouTube video time on site?

How can I extract the duration of this or that video from youtube so that it shows on my site?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
O
Oleg, 2017-01-05
@11dante

See api https://developers.google.com/youtube/reference?hl...
Get video duration in seconds

R
Rurik Rostislavich, 2017-01-05
@snipeer777

Parse
For example

<?php

//откуда будем парсить информацию
$content = file_get_contents('#');

// Определяем позицию строки, до которой нужно все отрезать
 $pos = strpos($content, '<html>');

//Отрезаем все, что идет до нужной нам позиции
 $content = substr($content, $pos);

// Точно таким же образом находим позицию конечной строки
$pos = strpos($content, '</html>');

// Отрезаем нужное количество символов от нулевого
 $content = substr($content, 0, $pos);

//если в тексте встречается текст, который нам не нужен, вырезаем его
 $content = str_replace('текст который нужно вырезать','', $content);

// выводим результат.
 echo $content;
 ?>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question