Look at the most popular now movie about Poland by Matthew Brown here - http://www.youtube.com/watch?v=lZ6XD1-26w0 If you would visit Poland personaly now - contact us, please !
// Converts https://www.youtube.com/watch?v=k_H2zJ7UZfs to k_H2zJ7UZfs
function urlToCode($link = '')
{
$parts = parse_url($link);
if (isset($parts['query'])) {
parse_str($parts['query'], $qs);
if (isset($qs['v'])){
return $qs['v'];
}
elseif (isset($qs['vi'])){
return $qs['vi'];
}
}
if (isset($parts['path'])){
$path = explode('/', trim($parts['path'], '/'));
return $path[count($path)-1];
}
return null;
}
// Converts 15:00 to 900
function timeToSeconds($time = '')
{
$parts = explode(':', $time);
if (count($parts) === 3) {
return $parts[0] * 3600 + $parts[1] * 60 + $parts[2];
}
elseif (count($parts) === 2) {
return $parts[0] * 60 + $parts[1];
}
return $time ?: 0;
}
VIDEO