[php] 유투브 주소에서 아이디 값만 추출하기
본문
<?php
$youtube_url = '';
$regExp = '/^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#\&\?]*).*/';
preg_match($regExp, $youtube_url, $matches);
$youtube_id = $matches[7];
?>
$youtube_url = '';
$regExp = '/^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#\&\?]*).*/';
preg_match($regExp, $youtube_url, $matches);
$youtube_id = $matches[7];
?>
추천0
댓글목록 0
등록된 댓글이 없습니다.