我遇到了这个问题,我试图$test
在我的 iframe 中使用我的变量src
并且每次尝试失败并且只显示黑色边框。
这是我的代码:
<?php
$url = 'http://www.youtube.com/watch?v=9t5ItWlWyDg/';
$parts = explode('=', $url);
$url2 = $parts[1];
$url3 = trim($url2,"?\/");
echo $url3;
$youtube = 'http://www.youtube.com/v/';
$video = $url3;
$vars = '&loop=1&autoplay=1';
$test = ($youtube . $video . $vars);
echo $test;
?>
<br>
<iframe width="420" height="345"
src="<? $test ?>">
</iframe>