Есть сайт
go2s.ru на нем спаршенные с ютуба видеоролики. Хочу чтобы при клике по ссылке видео открывалось на новой странице, а не как сейчас.
За парсинг отвечает функция:
function get_youtube_video($key) {
$DEVELOPER_KEY = 'AIzaSyAgk6lKh5IKBDdH_fgBlVcT2hEsmAY5jQ8';
$client = new Google_Client();
$client->setDeveloperKey($DEVELOPER_KEY);
// Define an object that will be used to make all API requests.
$youtube = new Google_Service_YouTube($client);
// Call the search.list method to retrieve results matching the specified
// query term.
$searchResponse = $youtube->search->listSearch('id,snippet', array(
'q' => $key,
'maxResults' => 50,
));
$videos = '';
$channels = '';
$playlists = '';
/*
echo '<pre>';
var_dump($searchResponse['items']);
echo '</pre>';
*/
echo '<div>';
foreach($searchResponse['items'] as $searchResult) {
switch ($searchResult['id']['kind']) {
case 'youtube#video':
$videoId=$searchResult['id']['videoId'];
$title=$searchResult['snippet']['title'];
$desc=$searchResult['snippet']['description'];
$img = 'https://i.ytimg.com/vi/'.$videoId.'/mqdefault.jpg'; // [0, 1, 2, 3, default, mqdefault, hqdefault, maxresdefault] http://shpargalkablog.ru/2013/06/youtube.html
$a1='<a href="http://www.youtube.com/embed/'.$videoId.'?autoplay=1&autohide=1&border=0&egm=0&showinfo=0" class="lightview" data-lightview-type="iframe" data-lightview-options="width: 638,height: 360">';
$a2='</a>';
echo '<div class="video">';
echo $a1.'<img style="float: left; margin: 15px;" src="'.$img.'" title="'.$title.'" alt="'.$title.'">'.$a2;
echo $a1.$title.$a2.'<br>';
echo $desc.'<br>';
echo '</div>';
echo '<div style="clear: both"></div>';
}
}
echo '</div>';
}
Подскажите. что нужно дописать/переписать?
Заранее спасибо!