这是我得到的错误preg_match() [function.preg-match]: Compilation failed: nothing to repeat at offset 77
这是业务:
$youtubeIdPattern = "#(?<=(?:v|i)=)[a-zA-Z0-9-]+(?=&)|(?<=(?:v|i)\/)[^&\n]+|(?<=embed\/)[^\"&\n]+|(?<=??(?:v|i)=)[^&\n]+|(?<=youtu.be\/)[^&\n]+#";
$youtubeIdMatch = array();
if ( isset( $regexMatch[0] ) && $regexMatch[0] != "" ) :
preg_match($youtubeIdPattern,$regexMatch[0],$youtubeIdMatch);
endif;
仅供参考,我们正在尝试仅从 Youtube URL 中获取视频 ID。