因此,經過嘗試和嘗試,我想我找到了答案。在任何尋找這個的腳本下面。
<?php
$dir = 'directoryname';
$exclude = array('.','..','.htaccess');
$q = (isset($_GET['formname']))? strtolower($_GET['formname']) : '';
$res = opendir($dir);
while(false!== ($file = readdir($res))) {
if(strpos(strtolower($file),$q)!== false &&!in_array($file,$exclude)) {
echo "<video width='320' height='240' controls>";
echo "<source src='$dir/$file'>$file type='video/mp4'>";
echo "</video>";
echo "";
echo "<br>";
}
}
closedir($res);
?>
而且形式
<form action="search.php" method="get"><input name="formname"
type="text"> <input type="submit"></form>
請添加代碼,您可以通過「filestring」試圖 –
如果你指的路徑,這就是你所需要的,以後你有信息使用HTML渲染你的視頻通過在[視頻](https://www.w3schools.com/html/html5_video.asp)標記中插入字符串來實現視頻。 –
謝謝你的回答。如果我熟悉PHP編碼,那將是可能的。無論如何,你可以向我展示如何做到這一點的例子嗎?因爲我不想顯示路徑,所以我希望它直接打開已找到的視頻。 –