通过php

时间:2016-03-19 12:10:13

标签: php video html5-video

取决于" id"在视频源中我想通过php加载不同的视频文件。例如,如果视频代码中的来源为"/get.php?id= 1"加载,http://example.com/movie1.mp4"/get.php?id= 2"加载,http://example.com/movie2.mp4等等。基本上我希望php文件充当视频文件的"link",你会怎么做?

<html> 
<body> 
<video width="400" controls>
<source src="/get.php?id=1" type="video/mp4">
</video>
</body> 
</html>

到目前为止的get.php文件:

<?php
$id = ($_GET["id"]);
if ($id = 1) {
//load movie1.
}
?>

0 个答案:

没有答案