PHP provides useful functions can read file directly instead of open → read → close: readfile(), file_get_contents() - personally I prefer to use file_get_contents(), because it does not display anything after reading the content. |
readfile() return the text stream and shows its content while reading.
$src = "src/new.json"; $tmp = readfile( $src); echo $tmp; |
Unlike readfile(), it does not display anything on the screen after reading the source file.
$src = "src/new.json"; $tmp = file_get_contents( $src); echo $tmp; |