I am trying to list files from an FTP server. I would like to get an array of sub-directories and files in them as a tree, as shown below:
folder1
file1.txt
file2.txt
folder2
folder2a
file1.txt
file2.txt
file.3txt
folder2b
file1.txt
Now my array will be something like
[folder1]=>array(file1.txt,file2.txt)
[folder2]=>array([folder2a]=>array(file1.txt,file2txt,file3.txt)
[folder2b]=>array(file1.txt))
Note: the array above might not be the exact syntax but just to give an idea of what I am looking for. I tried ftp_nlist() but seems to only return the files and folders but not the files inside the sub-folders. Here is a sample on how my code looks like
// set up basic connection
$conn_id = ftp_connect($ftp_server);
// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// get contents of the ftp directory
$contents = ftp_nlist($conn_id, ".");
// output $contents
var_dump($contents);
With the above it only lists of folders and not files. Anyone with a good idea on how to go around this? Thank you.