COMING SOON 🚀

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

· 9년 전 · 4653 · 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 = "
";
$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,314
PHP 9년 전 조회 2,608
PHP 9년 전 조회 2,367
PHP 9년 전 조회 2,213
PHP 9년 전 조회 2,242
PHP 9년 전 조회 1,983
PHP 9년 전 조회 2,096
PHP 9년 전 조회 3,809
PHP 9년 전 조회 4,374
PHP 9년 전 조회 3,048
PHP 9년 전 조회 2,399
PHP 9년 전 조회 4,306
PHP 9년 전 조회 2,465
PHP 9년 전 조회 2,263
PHP 9년 전 조회 4,654
PHP 9년 전 조회 2,930
PHP 9년 전 조회 2,238
PHP 9년 전 조회 2,661
PHP 9년 전 조회 2,376
PHP 9년 전 조회 2,774
PHP 9년 전 조회 2,288
PHP 9년 전 조회 2,679
PHP 9년 전 조회 2,385
PHP 9년 전 조회 2,506
PHP 9년 전 조회 2,301
PHP 9년 전 조회 2,691
PHP 9년 전 조회 2,796
PHP 9년 전 조회 3,401
PHP 9년 전 조회 2,522
PHP 9년 전 조회 2,538