데모
<?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
참고
게시글 목록
| 번호 | 제목 |
|---|---|
| 12099 |
웹서버
리눅스백그라운드실행
|
| 12097 | |
| 340 | |
| 12094 | |
| 12093 | |
| 12092 | |
| 12091 | |
| 12090 | |
| 12089 | |
| 12088 | |
| 12087 | |
| 12086 |
MySQL
mysql에서 boolean 타입 사용하기
|
| 12085 | |
| 12084 | |
| 12083 |
MySQL
mysqladmin 상태 모니터링
|
| 12082 | |
| 12081 | |
| 12080 |
웹서버
리눅스 프로세스 검사, 조회
|
| 12079 |
웹서버
리눅스에서 네트워크 상태 보기
|
| 12078 |
웹서버
리눅스 80 포트 방화벽 열기
|
| 12077 | |
| 12076 |
MySQL
Mysql Table 일괄 삭제 방법.
|
| 12075 | |
| 12074 | |
| 12073 |
MySQL
mysql 상태를 확인 하는 방법
|
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기