Thanks, Rossonero for your reply

changing this line:

$directory = explode("\\", $path);

to:

$directory = explode(DIRECTORY_SEPARATOR, $path);

These lines also:

$directory = getFolderTree('..\temp');
$htmlTree = createTree($directory["temp"]);

change to:

$pathx = '/temp/';

$directory = getFolderTree($pathx );

$htmlTree = createTree($directory);

and it works!!