我正在使用以下功能将 youtube 链接显示为视频,但问题是我不知道要替换多个视频,所以我如何将其限制为仅 1 个?
php代码:
function embedYoutube($text)
{
$pattern = '/[\\?\\&]v=([^\\?\\&]+)/';
$replacement = '<div style="width:100%;float:left;margin-top:15px;margin-bottom:15px;"><iframe width="570" height="315" src=http://www.youtube.com/embed/$1 frameborder="0" allowfullscreen></iframe></div>';
return preg_replace($pattern, $replacement, $text);
}