I've just implemented the SharePointAPI for PHP which can be found https://github.com/thybag/PHP-SharePoint-Lists-API
I was able to retrieve all of the SharePoint Lists from the WSDL, and was able to use the ->read($list) function to retrieve a List which holds Document folders and files.
Within the list, if the item is a file, I'm able to download it fine. However, if the item is another folder (a subdirectory), how do I access that directory's folders and files?
The ->read($list) function doesn't work, and I'm kind of at a loss. Does anybody know how I can read a List item's folders and files as it were a List?
Thanks alot