In PHP, how do we access the host's root folder. I need to read a certificate from /var/lib/sia folder?

Chris2018-10-02T20:35:43Z

Have you tried:
$content = file_get_contents( "/var/lib/sia/blah" );
?