I'm attempting to write a PHP script that will look at a directory and go through getting the names of the sub-directories with the last modified date of each sub-directory.
So it would return something like:
Sub1, 081512 Sub2, 081312 etc
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
The script below will output each folder/file in the directory and the last time they were each modified in this format: Filename - 11/28/1991 04:32:22 Filename - 11/28/1991 04:32:22 Filename - 11/28/1991 04:32:22
|
|||||
|
|
You want to set up your recursive function like this:
|
|||
|
|