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

· 9년 전 · 4557 · 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,216
PHP 9년 전 조회 2,500
PHP 9년 전 조회 2,262
PHP 9년 전 조회 2,109
PHP 9년 전 조회 2,145
PHP 9년 전 조회 1,878
PHP 9년 전 조회 1,988
PHP 9년 전 조회 3,706
PHP 9년 전 조회 4,271
PHP 9년 전 조회 2,951
PHP 9년 전 조회 2,311
PHP 9년 전 조회 4,219
PHP 9년 전 조회 2,360
PHP 9년 전 조회 2,150
PHP 9년 전 조회 4,558
PHP 9년 전 조회 2,832
PHP 9년 전 조회 2,132
PHP 9년 전 조회 2,579
PHP 9년 전 조회 2,277
PHP 9년 전 조회 2,685
PHP 9년 전 조회 2,184
PHP 9년 전 조회 2,569
PHP 9년 전 조회 2,275
PHP 9년 전 조회 2,395
PHP 9년 전 조회 2,215
PHP 9년 전 조회 2,571
PHP 9년 전 조회 2,694
PHP 9년 전 조회 3,298
PHP 9년 전 조회 2,404
PHP 9년 전 조회 2,425
🐛 버그신고