我有一个iframe在我的website.I要创建的视频我有一个缩略图url的iframe存储在database.I要创建这个我试过代码视频的缩略图。<img src="http://img.youtube.com/vi/_uQrJ0TkZlc/hqdefault.jpg" alt="" style="height:61px">它运行良好,但问题是我使用的(_uQrJ0TkZlc)id 是静态的。我希望该 id 应该是动态的,它存在于我的数据库表中这是我的 iframe<iframe style="width:10px;height:10px;" id="<?php echo $fetchorderdetails['id']?>" src="<?php echo $fetchorderdetails['video_links']?>rel=0&wmode=Opaque&enablejsapi=1;showinfo=0;" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
2 回答
蝴蝶不菲
TA贡献1810条经验 获得超4个赞
而不是存储整个链接到嵌入视频,只存储 ID。这样,您既可以访问嵌入的视频,也可以访问缩略图链接。要将变量插入到字符串中,请使用"<img src="http://img.youtube.com/vi/" . $id . "/hqdefault.jpg" alt="" style="height:61px">"
. 见https://www.php.net/manual/en/language.operators.string.php
哔哔one
TA贡献1854条经验 获得超8个赞
您应该使用视频网址的“嵌入”版本,其中包含嵌入字词
<iframe width="200" height="150" src="https://www.youtube.com/embed/iqlp5g8-W3I" frameborder="0" allowfullscreen></iframe>
非嵌入式网址在 iframe 中不起作用
- 2 回答
- 0 关注
- 129 浏览
添加回答
举报
0/150
提交
取消