-1

任何人都可以告诉如何在 php.ini 中更改 iframe 的宽度和高度。在数据库中,我保存格式低于格式。当我显示时,我想固定大小。

这是 iframe 内容

<iframe width="400" height="225" src="http://www.youtube.com/embed/c7ct6pNOvEE?feature=oembed" frameborder="0" allowfullscreen></iframe>

Here width & height changes dynamically基于 site.then 如何在 php 中将宽度转换为 500 将高度转换为 350

提前致谢

4

1 回答 1

7

你应该只使用 CSS

html, body, iframe {
    height: 100%;
    width: 100%;
}

编辑:下次您应该正确定义您的问题在发布之前添加适当的描述。

无论如何,由于您在数据库中有大小,您可以简单地使用 echo 来更改大小。首先,您需要从数据库中获取宽度和高度,然后在 HTML 中回显。

<?php
$iframe = html_entity_decode($post['url']);
$newWidth = 610;
$newHeight = 450;
?>

<iframe
    src="<?php echo $iframe; ?>"
    height="<?php echo $newHeight; ?>"
    width="<?php echo $newWidth; ?>"
    frameborder="0" allowfullscreen>
</iframe>

编辑 v12351524274573523

$iframe = '<iframe width="400" height="225" src="youtube.com/embed/c7ct6pNOvEE?feature=oembed" frameborder="0" allowfullscreen></iframe>';

$src = html_entity_decode($post['url']);
$height = 450;
$width = 610;

// add autoplay
$src = $src . (strstr($src, '?') ? '&': '?') . 'autoplay=1';

$iframe = preg_replace('/src="(.*?)"/i', 'src="' . $src .'"', $iframe);
$iframe = preg_replace('/height="(.*?)"/i', 'height="' . $height .'"', $iframe);
$iframe = preg_replace('/width="(.*?)"/i', 'width="' . $width .'"', $iframe);
于 2013-01-22T12:40:48.817 回答