调整嵌入代码 PHP 的大小

发布于 2024-09-29 15:09:58 字数 459 浏览 3 评论 0原文

我可以使用 PHP (也许使用正则表达式)有效地自动调整嵌入代码的大小吗?

这是嵌入代码的示例:

<object width="500" height="350">
  <param name="movie" value="http://www.megavideo.com/v/"></param>
  <param name="allowFullScreen" value="true"></param>
  <embed src="http://www.megavideo.com/v/" 
     type="application/x-shockwave-flash" 
     allowfullscreen="true"
     width="500" height="350">
  </embed>
</object>

Can I automatically resize an embed code efficiently using PHP (maybe with regex?)

Here's an example of the embed code:

<object width="500" height="350">
  <param name="movie" value="http://www.megavideo.com/v/"></param>
  <param name="allowFullScreen" value="true"></param>
  <embed src="http://www.megavideo.com/v/" 
     type="application/x-shockwave-flash" 
     allowfullscreen="true"
     width="500" height="350">
  </embed>
</object>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

£噩梦荏苒 2024-10-06 15:09:58

我认为您的问题是如何更改 标记的宽度和高度?如果是这样,如果您想使用 PHP,则必须刷新页面,在这种情况下您可能不想这样做,因为您的用户将必须重新加载视频(显然您只需将新值输出到宽度高度值)。

相反,您可能会想要使用 JavaScript。为您的对象命名,然后使用 JavaScript(如果必须的话,可以使用 jQuery 等)来更改尺寸。这将允许您更改尺寸而无需重新加载页面。

I think your question is asking how to change the width and height of the <object> tag? If so, if you want to use PHP, you'll have to refresh the page, which you probably don't want to do in this case, since your user will have to reload the video (obviously you would simply output new values to the width and height values).

Instead, you're probably going to want to use JavaScript. Give your object a name, and use JavaScript (with jQuery, etc. if you must) to change the dimensions. This will allow you to change the dimensions without reloading the page.

緦唸λ蓇 2024-10-06 15:09:58

做类似的事情

preg_replace('(<[^>]*?)width="[^"]*" height="[^"]*"', '$1width="100" height="200");

(代码未经测试)

Do something like

preg_replace('(<[^>]*?)width="[^"]*" height="[^"]*"', '$1width="100" height="200");

(code untested)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文