Php file read method instance analysis. Php file reading method example analysis this article describes the php file reading method. Share it with you for your reference. The details are as follows :? 12345? Php?filefopen(testfile.txt, r); php file reading method instance analysis
This document describes how to read php files. Share it with you for your reference. The details are as follows:
?
1 2 3 4 5 |
$ File = fopen ("Test // file.txt", "r"); // open the file Echo fgetc ($ file); // read a character from the file Fclose ($ file); // close the file ?> |
?
1 2 3 4 5 |
$ File = fopen ("Test // file.txt", "r"); // open the file Echo fgets ($ file); // read a row in the file Fclose ($ file); // close the file ?> |
?
1 2 3 4 5 |
$ File = fopen ("Test // file.txt", "r "); Echo fread ($ file, 20); // read the first 20 characters in the file Fclose ($ file ); ?> |
?
1 2 3 4 5 6 7 |
$ Filename = "Test // file.txt "; $ File = fopen ($ filename, "r "); $ Filesize = filesize ($ filename); // get the object length Echo fread ($ file, $ filesize); // Obtain all file content Fclose ($ file ); ?> |
I hope this article will help you with php programming.
Examples in this article describes how to read php files. Share it with you for your reference. The details are as follows :? 1 2 3 4 5? Php $ file = fopen (Test // file.txt, r );/...