PHP Php功能可调整YouTube和Vimeo的视频大小
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Php功能可调整YouTube和Vimeo的视频大小相关的知识,希望对你有一定的参考价值。
function resizeEmbed($video,$new_width='') {
$video = real_strip_tags($video,array('iframe','embed','param','object'),true);
preg_match("/width=\"([^\"]*)\"/i",$video,$w); $w = (integer)$w[1];
preg_match("/height=\"([^\"]*)\"/i",$video,$h); $h = (integer)$h[1];
if (!$new_width) $new_width = $w;
$w2 = $new_width;
$ratio = (float)($w2/$w);
$h2 = (integer)($h * $ratio);
$video = str_replace("width=\"$w\"","width=\"$w2\"",$video);
$video = str_replace("height=\"$h\"","height=\"$h2\"",$video);
return array("embed"=>$video,"w"=>$w2,"h"=>$h2,"w0"=>$w,"h0"=>$h);
}
function real_strip_tags($i_html, $i_allowedtags = array(), $i_trimtext = FALSE) {
if (!is_array($i_allowedtags)) $i_allowedtags = !empty($i_allowedtags) ? array($i_allowedtags) : array();
$tags = implode('|', $i_allowedtags);
if (empty($tags)) $tags = '[a-z]+';
preg_match_all('@</?\s*(' . $tags . ')(\s+[a-z_]+=(\'[^\']+\'|"[^"]+"))*\s*/?>@i', $i_html, $matches);
$full_tags = $matches[0];
$tag_names = $matches[1];
foreach ($full_tags as $i => $full_tag) {
if (!in_array($tag_names[$i], $i_allowedtags)) if ($i_trimtext) unset($full_tags[$i]); else $i_html = str_replace($full_tag, '', $i_html);
}
return $i_trimtext ? implode('', $full_tags) : $i_html;
}
以上是关于PHP Php功能可调整YouTube和Vimeo的视频大小的主要内容,如果未能解决你的问题,请参考以下文章
PHP:检查ID是来自Vimeo还是YouTube
php Youtube或Vimeo嵌入
PHP PHP Media API类(YouTube,Flickr,Vimeo,Bitly)
php 将Youtube或Vimeo网址转换为iframe
YouTube Vimeo 视频 ID 来自嵌入代码或来自带有 PHP 正则表达式 RegEx 的 URL
在 Wordpress 中更改 Vimeo/Youtube 默认大小