我正在建立一个视频网站,我希望我的用户能够从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>
有人可以推荐一些其他方法吗?感谢
答案 0 :(得分:2)
允许用户仅将来自网址的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>
祝你好运
答案 1 :(得分:0)
您需要使用addslashes()
功能:
echo Addslashes($source);