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
⇒ Opening a file for Reading in PHP
⇐ Reading a Text File to an Array in PHP
2016-12-04, ∼4304🔥, 0💬
Popular Posts:
What is EPUB 2.0 Metadata "dc:creator" and "dc:contributor" elements? EPUB 2.0 Metadata "dc:creator"...
How to use the RSS Online Validator at w3.org? You can follow this tutorial to learn how to use the ...
How to convert a JSON text string to an XML document with PHP language? Currently, there is no built...
How to use the "Ctrl-p Ctrl-q" sequence to detach console from the TTY terminal of container's runni...
How to read Atom validation errors at w3.org? If your Atom feed has errors, the Atom validator at w3...