mirror of
https://github.com/xiaoqidun/phpcp.git
synced 2025-04-04 03:07:53 +08:00
feat(首次发布): 添加项目文件
This commit is contained in:
31
rename.php
Normal file
31
rename.php
Normal file
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
require "config.php";
|
||||
if (!isset($_GET['path'])) {
|
||||
header("Location: ./404.php");
|
||||
exit;
|
||||
} elseif (!file_exists($path = trim($_GET['path']))) {
|
||||
header("Location: ./404.php");
|
||||
exit;
|
||||
}
|
||||
if (isset($_GET['name'])) if (($name = trim($_GET['name'])) != "") {
|
||||
if (strpos($name, "/") === false || strpos($name, "\\")) {
|
||||
$to = dirname($path) . "/$name";
|
||||
} else {
|
||||
$to = $name;
|
||||
}
|
||||
if (rename($path, $to)) {
|
||||
header("Location: ?path=" . urlencode($to));
|
||||
exit;
|
||||
}
|
||||
}
|
||||
xhtml_head("重新命名");
|
||||
echo "<div class=\"like\">\n<a href=\"./index.php?path=" . urlencode(dirname($path)) . "\"]>返回目录</a>\n新的命名</div>\n";
|
||||
echo "<div class=\"love\">\n";
|
||||
echo "<form action=\"\" method=\"GET\">\n";
|
||||
echo "<input type=\"hidden\" name=\"path\" value=\"$path\" />\n";
|
||||
echo "<input type=\"text\" name=\"name\" value=\"" . ___basename($path) . "\" />\n";
|
||||
echo "<input type=\"submit\" value=\"命名\" />\n";
|
||||
echo "</form>\n";
|
||||
echo "</div>\n";
|
||||
xhtml_footer();
|
||||
?>
|
Reference in New Issue
Block a user