工具分享 | 📅 2021-09-10 | FileManager php 文件管理 单文件
官网链接:https://tinyfilemanager.github.io/
Web based File Manager in PHP, Manage your files efficiently and easily with Tiny File Manager and it is a simple, fast and small file manager with a single file.
用PHP实现的基于Web的文件管理器,您可以使用Tiny File Manager高效、轻松地管理您的文件。它是一个简单、快速的小型文件管理器,并且只需一个文件。
从 https://github.com/prasathmani/tinyfilemanager 下载文件,或者直接复制 tinyfilemanager.php
文件到Web应用文件夹。然后直接访问即可。
配置文件在同级目录下的 config.php
文件里。核心配置如下:
$auth_users = array(
'admin' => password_hash('666', PASSWORD_DEFAULT),
'user' => password_hash('pwd', PASSWORD_DEFAULT)
);
//set application theme
//options - 'light' and 'dark'
$theme = 'dark';
// Readonly users
// e.g. array('users', 'guest', ...)
$readonly_users = array(
'user'
);
通过 $auth_users
可以添加用户。
通过 $readonly_users
控制用户权限,指定用户为:只读用户。
通过 $theme
选择 light
或者 dark
模式。