0

我正在尝试做一个简单的任务,即改变数千个具有共同/高度的音乐视频嵌入代码。

例如,我有以下代码:

<object width="480px" height="407px" >
    <param name="allowFullScreen" value="true"/>
    <param name="wmode" value="transparent"/>
    <param name="movie" value="http://mediaservices.myspace.com/services/media/embed.aspx/m=1311720,t=1,mt=video"/>
    <embed src="http://mediaservices.myspace.com/services/media/embed.aspx/m=1311720,t=1,mt=video"
        width="480" height="407" allowFullScreen="true"
        type="application/x-shockwave-flash"
        wmode="transparent">
    </embed>
</object>

仅为易读性添加换行符

我需要编辑<object><embed>标签中的宽度/高度参数,一个具有“px”后缀,另一个根本没有(这完全是随机的,有些代码在所有情况下都有它,而另一些则没有)。

首先,我试图找出现有视频的宽度/高度......找到纵横比......然后用新值替换现有值(宽度=“640”和高度=“xxx”这是基于视频的纵横比)。

4

3 回答 3

4

这是获取宽度和高度的方法

preg_match('/width="(\d+)(px)?" height="(\d+)(px)?"/', $text, $matches);

$width = intval($matches[1]);
$height = intval($matches[3]);

像这样计算新高度:

$new_width = 640;
$new_height = intval($new_width * $height / $width);

并像这样替换:

$text = preg_replace('/width="(\d+)(px)?" height="(\d+)(px)?"/',
                     'width="' . $new_width . '" height="' . $new_height . '"',
                      $text);
于 2009-09-28T00:40:19.740 回答
2
$embed_clean = preg_replace('/width=([^"]"\d+(%|px|)[^"]")/','width="'.$CONFIG.'"',$embed_clean);
于 2011-11-26T23:03:29.117 回答
1

使用SimpleHTMLDOM

require_once("simplehtmldom.php");

$dom = str_get_html($text);
foreach ($dom->find('object') as $obj) {
    $width = intval($obj->width);
    $height = intval($obj->height);
    $height = intval(640 * $height / $width);
    $obj->width = 640;
    $obj->height = $height;
    $embed = $obj->find('embed',0);
    if ($embed != null) {
        $embed->width = 640;
        $embed->height = $height;
    }
}
$text = $dom->save();
于 2009-09-28T03:36:07.453 回答