0

这似乎很简单,但问题是我不会提前知道字符串的长度。我的客户有一个预制/购买的博客,它通过其 CMS 将 youtube 视频添加到帖子中 - 基本上我希望我的函数搜索如下字符串:

<embed width="425" height="344" type="application/x-shockwave-flash"     pluginspage="http://www.macromedia.com/go/getflashplayer" src="http://www.youtube.com/somevid"></embed>

无论当前的宽度和高度值如何,我都想用我自己的常量替换它们,例如 width="325" height="244"。有人可以解释一下解决这个问题的最佳方法吗?

提前谢谢了!!

4

2 回答 2

2

DOMDocumentFTW!

<?php

define("EMBED_WIDTH", 352);
define("EMBED_HEIGHT", 244);

$html = <<<HTML
<!DOCTYPE HTML>
<html lang="en-US">
<head>
    <meta charset="UTF-8">
    <title></title>
</head>
<body>

<embed width="425" height="344" type="application/x-shockwave-flash"
       pluginspage="http://www.macromedia.com/go/getflashplayer" src="http://www.youtube.com/somevid"></embed>


</body>
</html>
HTML;

$document = new DOMDocument();
$document->loadHTML($html);

$embeds = $document->getElementsByTagName("embed");

$pattern = <<<REGEXP
|
(https?:\/\/)?   # May contain http:// or https://
(www\.)?         # May contain www.
youtube\.com     # Must contain youtube.com
|xis
REGEXP;

foreach ($embeds as $embed) {
    if (preg_match($pattern, $embed->getAttribute("src"))) {
        $embed->setAttribute("width", EMBED_WIDTH);
        $embed->setAttribute("height", EMBED_HEIGHT);
    }
}

echo $document->saveHTML();
于 2012-06-29T14:31:01.273 回答
-2

您应该使用正则表达式来替换它。例如:

    if(preg_match('#<embed .*type="application/x-shockwave-flash".+</embed>#Us', $originalString)) {
        $string = preg_replace('#width="\d+"#', MY_WIDTH_CONSTANT, $originalString);
    }

“.*”表示任何字符。就像我们在升号后传递“s”标志一样,我们也接受换行符。“U”标志表示不贪婪。它将在找到的第一个结束嵌入标记处停止。

"\d+" 表示一位或多位数字。

于 2012-06-29T14:17:47.563 回答