什么是嵌入YouTube视频的最佳方式? [关闭](What is the best way t

2019-07-21 06:19发布

我建立一个视频网站的,我希望我的用户能够从Youtube上传或嵌入视频。 YouTube的API似乎并没有从他们的网站提供视频的上传,还是他们? 所以,我想通过一个嵌入视频iframe用PHP。 下面是代码:

<?php
$source=$_POST['source'];
?>

<html>
<div id="bo"><?php echo $source;?></div>
<form action="altupload.php" method="post">
<input type="text" name="source">
<input type="submit">
</form>
</html>

但我得到的是:

<html><div id="bo"><iframe width=\"560\" height=\"315\" src=\"http://www.youtube.com/embed/tZa5hyb0_wA\" frameborder=\"0\" allowfullscreen></iframe></div>`

<html>
<form action="altupload.php" method="post">
<input type="text" name="source">
<input type="submit">
</form>
</html>

任何人都可以推荐一些其他的方式来做到这一点? 谢谢

Answer 1:

允许用户从网址为只上传YouTube视频ID:

http://www.youtube.com/watch?v=Vw5FDZRGTL0

视频ID: Vw5FDZRGTL0

并且可以设置iframe标签的其他选项:

<iframe width="420" height="315" src="http://www.youtube.com/embed/<?php echo $videoID; ?>" frameborder="0" allowfullscreen></iframe>  

祝好运



Answer 2:

你需要使用addslashes()函数:

echo Addslashes($source);


文章来源: What is the best way to embed Youtube videos? [closed]