23.08.2015, 16:52
|
Профессор
|
|
Регистрация: 14.01.2015
Сообщений: 12,990
|
|
Сообщение от user_name
|
<?php
$path = $_POST['path'];
// handler корневой
$dir = realpath(dirname(__FILE__)).'/'.$path.'/';
$names = array();
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while ($file = readdir($dh)) {
if($file != '.' and $file != '..') {
$names[] = $file;
}
}
closedir($dh);
}
echo json_encode($names);
}
?>
|
--> glob().
|