Tools, FAQ, Tutorials:
Reading the Entire File to a String in PHP
How To Read the Entire File into a Single String in PHP?
✍: FYIcenter.com
If you have a file, and you want to read the entire file into a single string, you can use the file_get_contents() function. It opens the specified file, reads all characters in the file, and returns them in a single string. Here is a PHP script example on how to file_get_contents():
<?php $file = file_get_contents("/windows/system32/drivers/etc/services"); print("Size of the file: ".strlen($file)."\n"); ?>
This script will print:
Size of the file: 7116
2016-12-04, 829👍, 0💬
Popular Posts:
How to detect errors occurred in the json_decode() call? You can use the following two functions to ...
Where Is the Submitted Form Data Stored in PHP? When a user submit a form on your Web server, user e...
Where to find tutorials on API Management Services at Azure Portal? Here is a list of tutorials to a...
Where to find tutorials on how to create Your Own Functions in PHP? A collection of tutorials to ans...
What's Wrong with "while ($c=fgetc($f)) {}" in PHP? If you are using "while ($c=fgetc($f)) {}" to lo...