檢索數組中的文件結構我想從dynatree的php中的特定路徑中檢索這種類型的數組? 如何以檢索文件和文件夾這樣的陣列...如何在php中使用函數
children: [
{title: "Item 1", key: "node1"},
{title: "Folder 2", isFolder: true, key: "node2",
children: [
{title: "Sub-item 2.1", key: "node2.1"},
{title: "Sub-item 2.2", key: "node2.2"}
]
},
{title: "Item 3", key: "node3"}
]
我嘗試這個功能...
<?php
function getDirectory($path = '.', $level = 0) {
$ignore = array('cgi-bin', '.', '..');
$dh = @opendir($path);
while (false !== ($file = readdir($dh))) {
if (!in_array($file, $ignore)) {
if (is_dir("$path/$file")) {
echo '<li id="key1" class="folder expanded">' . $file;
echo '<ul class="folder-content">';
getDirectory("$path/$file", ($level + 1));
echo '</ul>';
echo '</li>';
}
}
}
closedir($dh);
}
?>
你試過了嗎?請告訴我們你的代碼。 – aslawin
看到我加我嘗試過的功能... @aslawin – Brothers