I'm trying to reach files available in a folder available in root directory. I'm using
foreach ( glob( dirname(__FILE__) . '/MobileApp/Images/*' ) as $filename)
but am unable to go up multiple levels in the directory. How can i do this?
My folder structure is as follow:
File where the glob() is being called from : root/MobileApp/Portal/SystemFiles/file.php
File I'm trying to reach is in root/MobileApp/Images/*
Any help is much appreciated.