Trouble navigating directory structure
PHP Code:
// What I want does NOT work:
file_get_contents('/home/user/subdomains/test2/application../data/logs/log.log');
// In reality /home/user/subdomains/test2/application gets replaced with APPLICATION_PATH
// The absolute path to what I want does work:
file_get_contents('/home/user/subdomains/test2/data/logs/log.log');
My application path is defined, so I'd like to navigate up to the parent directory and then into data/logs/ etc. /application and /data are in the same directory. In this case /home/user/subdomains/test2