When we encounter a large text file, such as a large file exceeding tens of megabytes or even hundreds of megabytes or several gigabytes, it is often impossible to open it successfully with Notepad or other editors because they all need to put all the file contents. into the memory, then a memory overflow will occur and an opening error will occur. In this case, we can use PHP's file reading function file_get_contents() to read in segments.
Function Description
string file_get_contents ( string $filename [, bool $use_include_path [, resource $context [, int $offset [, int $maxlen ]]]] )
Same as file(), except file_get_contents() reads the file into a string. Contents of length maxlen will be read starting at the position specified by the offset parameter. On failure, file_get_contents() returns FALSE.
The file_get_contents() function is the preferred method for reading the contents of a file into a string. If the operating system supports it, memory mapping technology will also be used to enhance performance.
Application:
If you just want to read a smaller file in segments and finish reading it, you can use the fread() function
echo $str;
The above is how to use the file_get_contents function to read large files. It is super simple. If you need it, just move it!