<?php
include'vendor\autoload.php';
define("PROJECT_ID", 'projectname');
define("BUCKET_NAME", 'bucketname');
$content=file_get_contents('C:\Users\Useraccount\PhpstormProjects\Projectname\filename.txt);
echo($content);
?>
This is the code that is working well on localhost but I am not able to get file contents on cloud storage. It simply shows me an empty page. Which are the possible solutions to this problem?