본문 바로가기

PHP

PHP로 유투브 임베드 하기

임베드란? 

- 개체 삽입. 동영상이나 음악같은 개체를 HTML문서에 삽입할 때 사용.



PHP로 유튜브 임베드 소스


<?php
    $url = 'https://www.youtube.com/watch?v=u9-kU7gfuFA'
    preg_match('/[\\?\\&]v=([^\\?\\&]+)/', $url, $matches);
    $id = $matches[1];
    $width = '800px';
    $height = '450px';
?>
<iframe id="ytplayer" type="text/html" width="<?php echo $width ?>" height="<?php echo $height ?>"
    src="https://www.youtube.com/embed/<?php echo $id ?>?rel=0&showinfo=0&color=white&iv_load_policy=3"
    frameborder="0" allowfullscreen></iframe> 


출처 : https://sourcey.com/youtube-html5-embed-from-url-with-php/