데모
<?php
//ver1.0 150423 @_untitle_d
$yt_api = ''; //유튜브 API KEY, https://console.developers.google.com/project
function get_video_id($url){}
function youtube_info($id, $part='snippet')
{
global $yt_api;
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, "https://www.googleapis.com/youtube/v3/videos?id={$id}&key={$yt_api}&part={$part}");
curl_setopt($curl, CURLOPT_POST, 0);
curl_setopt($curl, CURLOPT_TIMEOUT, 10);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$return = curl_exec($curl);
curl_close($curl);
return json_decode($return, true);
}
$tmp_yt = 'http://www.youtube.com/watch?v=yEJ2-VofNCw'; //유튜브 동영상
$return = youtube_info(get_video_id($tmp_yt)); //유튜브 정보
echo "동영상 : ".$tmp_yt."<br>";
echo "제목 : ".$return['items'][0]['snippet']['title']."<br>"; //title
echo "채널명 : ".$return['items'][0]['snippet']['channelTitle']."<br>"; //channelTitle
echo "썸네일 : <img src='".$return['items'][0]['snippet']['thumbnails']['default']['url']."'><br>"; //thumb default
print_r($return);
?>
관련링크
http://untitled.untitle311apyxry1w48.com/lkbmgfh
참고
게시글 목록
| 번호 | 제목 |
|---|---|
| 315 | |
| 311 | |
| 12040 | |
| 20370 | |
| 20365 |
CSS
css가 충돌이 됬을때
4
|
| 12039 |
JavaScript
풀스크린 스크립트
|
| 20364 | |
| 12037 |
웹서버
vi 온라인 학습장
1
|
| 12035 |
jQuery
강력한 무료 멀티 업로더...
1
|
| 12032 | |
| 12031 | |
| 20362 |
HTML
HTML5 자바스크립트 API
1
|
| 12024 |
기타
P3P 규약의 이해
6
|
| 12022 | |
| 303 | |
| 12020 | |
| 12015 | |
| 12010 |
PHP
외부이미지 썸네일 만들기
4
|
| 12009 |
웹서버
퍼미션 계산기-아주 좋습니다.
|
| 12007 |
JavaScript
화면전체에 눈 내리는 효과
1
|
| 12005 |
PHP
외부이미지 서버에 저장하기
1
|
| 12004 |
PHP
유튜브 api 사용하기
현재글
|
| 20361 | |
| 12002 | |
| 11997 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기