|
|
发表于 2018-8-30 19:32:08
|
显示全部楼层
本帖最后由 yuchongwei 于 2018-8-30 19:48 编辑
同问?怎么才能出现删除按键?
<?php
$siteinfo = array(
"title" => "Zdir 实用的目录列表程序",
"keywords" => "zdir,h5ai,Directory Lister,Fdscript,目录列表,目录索引",
"description" => "Zdir是一款使用PHP开发的目录列表程序,简单实用,免费开源。"
);
//需要忽略的目录
$ignore = array(
".",
".git",
"favicon.ico",
"functions",
"config.php",
"index.php",
"static",
"LICENSE",
"template",
"cache.php",
"indexes.php"
);
//设置IP与密码
$config = array(
"allowip" => array(
"::1",
"127.0.0.1",
"151.80.32.99."
),
"password" => "xiaoz.me"
);
?> |
|