The following code give me all the directories:
print_r(glob('*',GLOB_ONLYDIR));
But I need only the ones that start with a digit (version numbers 3.0.4, 3.0.5 etc).
I was thinking of using a foreach loop and some test conditions.
Is there another way to do this?