I am new to using the PHP Directory Iterator.
My understanding is if I do:
$dir = new DirectoryIterator(dirname("/var/wwwphp"));
Then
$dir->getPath();
should be /var/wwwphp and I can start using it in that folder. But instead, getPath just gives me /var. Furthermore, if I iterate over the files, it gives me all the files in /var and not /var/wwwphp.
Why can I not go straight into the wwwphp folder?
Thanks.