将字符串添加到iframe标记中的URL末尾

时间:2014-11-24 14:08:11

标签: php

我的iFrame中有一个网址:

<iframe src="http://example.com/video/123/"></iframe>

在PHP中,如何编辑此项以将?wmode=transparent添加到URL的末尾。

谢谢

2 个答案:

答案 0 :(得分:0)

你可以回复网址中的字符串。

<iframe src="http://example.com/video/123/<?php echo "?wmode=transparent" ?>></iframe>

答案 1 :(得分:0)

让我们说你有一个打印以下html的php页面:

<iframe src="http://example.com/video/123/"></iframe>

使用php,你可以做很多事情,例如:

<?php
$myVarToAppend = "?wmode=transparent"; //Putting the val inside a variable.
?>

<iframe src="http://example.com/video/123/<?php print $myVarToAppend; ?>"></iframe>

var可以填充很多东西,比如DataBase Response或你想要的东西。 如果您需要在运行时执行此操作(无需重新加载页面),则需要使用Javascript

执行此操作

编辑: 我选择不打印所有字符串,因为只有在需要时才使用php会更好,没有用它来打印所有内容。

EDIT2: 在你的评论之后,你已经说过你有两个字符串:

注意,你写的字符串不能很好地工作,&#34;是错误的。

$string = "<p>test</p><iframe src="http://example.com/video/123/"></iframe><p>test</p>";

$toAdd = "?wmode=transparent";
你可以这样做: 我用 。用于连接字符串。

$string = '<p>test</p><iframe src="http://example.com/video/123/'.$toAdd.'"></iframe><p>test</p>';

也许还有其他方法,但信息太少是我现在可以做的最大限度。