The following examples don't work in php -
$data = file_get_contents('~/Documents/someFile.txt');
//no such file or directory
$data = file_get_contents('$HOME/Documents/someFile.txt');
// no such file or directory
What's the reason why this doesn't work?