<?php
// 유튜브 퍼가기 주소로 유튜브ID 추출
function YoutubeImg($youtube_link){
$reg = preg_match_all('/https?:\/\/http://www.youtube.com\/watch\?v=([a-zA-Z0-9\-_]+)/i',$youtube_link,$matches);
$youtube_id = $matches[1][0];
if($youtube_id == ''){
$reg = preg_match_all('/https?:\/\/youtu.be\/([a-zA-Z0-9\-_]+)/i',$youtube_link,$matches);
$youtube_id = $matches[1][0];
}
return $youtube_id ? $youtube_id : "";
}
?>
<div><img src="https://i.ytimg.com/vi/<?php echo YoutubeImg(유튜브퍼가기 주소); ?>/default.jpg" >?></div>
또는
<div><img src="https://img.youtube.com/vi/<?php echo YoutubeImg(유튜브퍼가기 주소); ?>/default.jpg" >?></div>
이름 별표 표시(substr, mb_substr, strlen, mb_strlen) (0) | 2018.08.06 |
---|---|
php 이미지 업로드 (1) | 2015.06.15 |
php mail 함수 사용법 (0) | 2015.03.05 |
php 소수점 올림 버림 반올림 (0) | 2015.02.07 |
substr 문자 자르기 (0) | 2014.01.09 |
댓글 영역