我需要使用 jstree 来显示 ftp 帐户的 homedir 的目录结构。我不知何故陷入了检索完整目录结构的困境(并创建了一个 json 对象、xml 文件、html 代码等等)。这很可能是一件简单的事情,只是让我忘记了,但无论如何,这是我到目前为止所尝试的:
function draw_tree($path)
{
global $con;
$list = ftp_nlist($con,$path);
$dirs = array(); $files = array();
foreach($list as $file)
{
if(ftp_is_dir($file))
{
$dir[] = array(
'attr' => array('data-path' => $path . '/' . $file,
'data' => $file,
'state' => 'closed',
'children' => // ??? some recursive function should
// probably go here
);
}
else {
$files[] = array(
'attr' => array('data-path' => $file)
);
}
}
return array_merge($dirs,$files);
}