`

Join a large group of our Happy Clients!

https://youtu.be/cg8Na3BZcCQ

Listen to also our other tourists and their opinions after their trip to Poland with us -
https://www.youtube.com/watch?v=ZuY8dfq6opY&t=2s

// 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; }