0
작동하지 않습니다 예상대로목록 폴더 다음 스크립트는 현재 디렉토리에 대해 잘 작동
<?php
$ignore = array ('.', '..', '.DS_Store', 'index.php');
$num_ordnernamen = array();
if ($handle = opendir('./')) {
while (false !== ($entry = readdir($handle))) {
if (!in_array($entry, $ignore) && is_dir($entry)) {
array_push($num_ordnernamen, $entry);
}
}
}
print_r ($num_ordnernamen);
?>
, 그것은 배열을 반환 ,
if ($handle = opendir('../')) //or
if ($handle = opendir('..')) //or
if ($handle = opendir('../..'))
을 위해 일 ... 또는 다른 것을 나는 한 단계 위로를 얻으려고하지. 내가 여기서 무엇을 놓치고 있니?