php单文件实现文件批量预览——图片,音频,视频

有一天,无意中发现了一个在线文件预览地址。即那种暴露目录的地址。该目录下清一色的图片。觉得一个个点击进去查看太麻烦了,因此特意写了这个文件预览代码。单php文件,放到站点下运行即可。

1.实用场景

比如一个在线站点文件目录如下:一个个点击查看太慢了。所以就想一次性展示出来。

代码运行实际效果:

tips:咳咳...这里的图片来源于我之前python爬取的图片,仅学习交流。

2.源码解析

废话不多说,先上代码:show.php

php 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>记录查询</title>
</head>
<body>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
        }

        form {
            margin: 20px;
            padding: 10px;
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        label {
            display: block;
            margin-bottom: 5px;
        }

        input[type="text"],
        input[type="password"],
        input[type="submit"] {
            width: 98%;
            padding: 8px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 3px;
        }

        input[type="submit"] {
            background-color: #007bff;
            color: #fff;
            cursor: pointer;
        }

        #imageContainer,
        #audioContainer {
            margin: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        img {
            margin: 5px;
        }

        audio {
            margin: 5px;
        }
    </style>
<form method="post">
    <label for="date">选择查看的日期 (年-月-日):</label>
    <input type="text" id="date" name="date" required value="<?php echo htmlspecialchars(empty($_POST['date']) ? '' : $_POST['date']); ?>">
    <br>
    <label for="password">访问密码:</label>
    <input type="password" id="password" name="password" required  value="<?php echo htmlspecialchars(empty($_POST['password']) ? '' : $_POST['password']); ?>" >
    <br>
    <input type="submit" value="查阅">
</form>

<div id="imageContainer"></div>
<div id="audioContainer"></div>
<div id="videoContainer"></div>


<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
    $date = $_POST["date"];
    $password = $_POST["password"];

    // Check if password is correct
    $correctPassword = "admin"; // Change this to your actual password

    if ($password === $correctPassword) {
        $url = "http://localhost/img/";
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        $output = curl_exec($ch);
        curl_close($ch);

        $doc = new DOMDocument();
        @$doc->loadHTML($output);

        $links = $doc->getElementsByTagName('a');

        $imageLinks = [];
        $audioLinks = [];
        $videoLinks = [];


        foreach ($links as $link) {
            $href = $link->getAttribute('href');
            if (substr($href, -4) === '.jpg') {
                $imageLinks[] = $url . '/' . $href;
            } elseif (substr($href, -4) === '.mp3') {
                $audioLinks[] = $url . '/' . $href;
            }elseif (substr($href, -4) === '.mp4') {
                $videoLinks[] = $url . '/' . $href;
            }
        }

        echo '<script>';
        echo 'const imageLinks = ' . json_encode($imageLinks) . ';';
        echo 'const audioLinks = ' . json_encode($audioLinks) . ';';
        echo 'const videoLinks = ' . json_encode($videoLinks) . ';';
        echo 'const videoContainer = document.getElementById("videoContainer");';
        echo 'videoLinks.forEach(video => {';
        echo '    const videoElement = document.createElement("video");';
        echo '    videoElement.controls = true;';
        echo '    const source = document.createElement("source");';
        echo '    source.src = video;';
        echo '    source.type = "video/mp4";';
        echo '    videoElement.appendChild(source);';
        echo '    videoContainer.appendChild(videoElement);';
        echo '});';
        echo 'const imageContainer = document.getElementById("imageContainer");';
        echo 'imageLinks.forEach(image => {';
        echo '    const img = document.createElement("img");';
        echo '    img.src = image;';
        echo '    img.style.width = "200px";';
        echo '    imageContainer.appendChild(img);';
        echo '});';
        echo 'const audioContainer = document.getElementById("audioContainer");';
        echo 'audioLinks.forEach(audio => {';
        echo '    const audioElement = document.createElement("audio");';
        echo '    audioElement.controls = true;';
        echo '    const source = document.createElement("source");';
        echo '    source.src = audio;';
        echo '    source.type = "audio/mp3";';
        echo '    audioElement.appendChild(source);';
        echo '    audioContainer.appendChild(audioElement);';
        echo '});';
        echo '</script>';
    } else {
        echo "<p>密码错误,无权访问</p>";
    }
}
?>
</body>
</html>

从效果图能看到这里特意传递了两个参数,一个参数是date为日期参数,方便做二级目录拼接,当然,如果文件都在一个文件夹下的话,这个参数就不用管了。第二个参数是为了保证私密性做的密码验证。该代码主要功能是将文件中的图片,视频,音频进行批量可视化展示。

3.强强联合

既然知道代码功能是干什么的了,那么我们就可以进行下一个实操环节了。什么?你说你本地根本没有那么多图片或视频资源,食之无味?那你肯定不是我的粉丝,没有关注我之前的博客。该代码功能配合下面两个实用效果更佳。

python通过url爬取视频资源到本地-CSDN博客 python通过url爬取动漫图片_iw233.cn/api/random.php-CSDN博客

希望这个三合一,能给你带来不一样的体验。将复杂的东西简单化,简单的东西工具化。

相关推荐
数据猎手小k2 小时前
AndroidLab:一个系统化的Android代理框架,包含操作环境和可复现的基准测试,支持大型语言模型和多模态模型。
android·人工智能·机器学习·语言模型
你的小103 小时前
JavaWeb项目-----博客系统
android
风和先行3 小时前
adb 命令查看设备存储占用情况
android·adb
AaVictory.4 小时前
Android 开发 Java中 list实现 按照时间格式 yyyy-MM-dd HH:mm 顺序
android·java·list
残月只会敲键盘4 小时前
面相小白的php反序列化漏洞原理剖析
开发语言·php
ac-er88884 小时前
PHP弱类型安全问题
开发语言·安全·php
ac-er88884 小时前
PHP网络爬虫常见的反爬策略
开发语言·爬虫·php
yanwushu4 小时前
Xserver v1.4.2发布,支持自动重载 nginx 配置
mysql·nginx·php·个人开发·composer
似霰5 小时前
安卓智能指针sp、wp、RefBase浅析
android·c++·binder
大风起兮云飞扬丶5 小时前
Android——网络请求
android