임베드란?
- 개체 삽입. 동영상이나 음악같은 개체를 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/
'PHP' 카테고리의 다른 글
error_reporting() (0) | 2018.03.10 |
---|---|
[Php] 경로 제외한 파일 이름만 선택하는 방법, Basename() (0) | 2018.03.10 |
PHP(PCRE), JS, PY 정규표현식 테스트 사이트 (0) | 2018.03.08 |
[ubuntu] vim 에디터 설치 (0) | 2018.02.13 |
[ubuntu] 설치시 Please remove the installation medium (4) | 2018.02.13 |