유투브 썸네일, 공유소스 가져오기

· 9년 전 · 4531 · 1

[code]
<?
function yt_thumb($url) {
    $a = parse_url($url);
    parse_str($a[query], $a);
    return "http://img.youtube.com/vi/$a[v]/0.jpg";
}

function yt_iframe($url) {
    $a = parse_url($url);
    parse_str($a[query], $a);
    $is_mobile =
        preg_match('/phone|samsung|lgtel|mobile|[^A]skt|nokia|blackberry|android|sony/i',
        $_SERVER['HTTP_USER_AGENT']);
    if ($is_mobile) {
        $width = 360;
        $height = 240;
    }
    else {
        $width = 560;
        $height = 315;
    }
    return "<iframe width='$width' height='$height' src='https://www.youtube.com/embed/$a[v]' frameborder='0' allowfullscreen></iframe>";
}
?>
[/code]

 

<? // 사용 예
$url = "https://www.youtube.com/watch?v=QnsfHfgIRJM";
$src = yt_image($url);
$iframe = yt_iframe($url);
?>
<img src="<?=$src?>">
<?=$iframe?>
|

댓글 1개

[code]
<?php
function YouTube($url='', $width='', $height='') {
if(!$url) return array();
$OutPut = array();
$url = end(explode('=', parse_url($url, PHP_URL_QUERY)));
if(!$url) return array();
$is_mobile = preg_match('/phone|samsung|lgtel|mobile|[^A]skt|nokia|blackberry|android|sony/i', $_SERVER['HTTP_USER_AGENT']);
if(!$width || !$height) {
if($is_mobile) { $width = 360; $height = 240; }
else { $width = 560; $height = 315; }
}
$OutPut['thumb'] = 'http://img.youtube.com/vi/'.$url.'/0.jpg';
$OutPut['iframe'] = '<iframe width="'.$width.'" height="'.$height.'" src="https://www.youtube.com/embed/'.$url.'" frameborder="0" allowfullscreen></iframe> ';
return $OutPut;
}
$YouTube = YouTube('https://www.youtube.com/watch?v=QnsfHfgIRJM');
?>
<img src="<?php echo $YouTube['thumb']; ?>" alt="">
<?php echo $YouTube['iframe']; ?>
[/code]
이렇게 쓰는것도 좋을것 같습니다.
댓글을 작성하시려면 로그인이 필요합니다. 로그인

개발자팁

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
PHP 9년 전 조회 2,187
PHP 9년 전 조회 2,470
PHP 9년 전 조회 2,226
PHP 9년 전 조회 2,082
PHP 9년 전 조회 2,114
PHP 9년 전 조회 1,850
PHP 9년 전 조회 1,949
PHP 9년 전 조회 3,663
PHP 9년 전 조회 4,250
PHP 9년 전 조회 2,916
PHP 9년 전 조회 2,301
PHP 9년 전 조회 4,199
PHP 9년 전 조회 2,331
PHP 9년 전 조회 2,122
PHP 9년 전 조회 4,532
PHP 9년 전 조회 2,799
PHP 9년 전 조회 2,105
PHP 9년 전 조회 2,568
PHP 9년 전 조회 2,244
PHP 9년 전 조회 2,673
PHP 9년 전 조회 2,164
PHP 9년 전 조회 2,549
PHP 9년 전 조회 2,252
PHP 9년 전 조회 2,364
PHP 9년 전 조회 2,205
PHP 9년 전 조회 2,541
PHP 9년 전 조회 2,675
PHP 9년 전 조회 3,281
PHP 9년 전 조회 2,382
PHP 9년 전 조회 2,411
🐛 버그신고