readfile()
<?php readfile("/etc/issue")?>
Output
Debian GNU/Linux 13 \n \l
file_get_contents()
<?php 
    $contents = file_get_contents("/etc/issue");
    $contents = trim($contents,"\n");
    echo nl2br($contents);
?>
Output
Debian GNU/Linux 13 \n \l