readfile_lib
Proto type
string readfile_lib (string filename [, int use_include_path])Description
<?php
ob_start()
readfile($path);
$text = ob_get_contents();
ob_end_clean();
?><?php
$text = readfile_lib($path);
?>Arguments
Example
See also
Last updated