Tools, FAQ, Tutorials:
Writing a String to a File without a File Handle in PHP
How To Write a String to a File without a File Handle in PHP?
✍: FYIcenter.com
If you have a string, want to write it to a file, and you don't want to open the file with a file handle, you can use the file_put_contents(). It opens the specified file, writes the specified string, closes the file, and returns the number of bytes written. Here is a PHP script example on how to use file_put_contents():
<?php $string = "Download PHP scripts at dev.fyicenter.com.\r\n"; $string .= "Download Perl scripts at dev.fyicenter.com.\r\n"; $bytes = file_put_contents("/temp/todo.txt", $string); print("Number of bytes written: $bytes\n"); ?>
This script will print:
Number of bytes written: 89
If you look at the file todo.txt, it will contain:
Download PHP scripts at dev.fyicenter.com. Download Perl scripts at dev.fyicenter.com.
Â
⇒Reading and Writing Files in PHP
⇒⇒PHP Tutorials
2016-11-27, 1136👍, 0💬
Popular Posts:
How to read RSS validation errors at w3.org? If your RSS feed has errors, the RSS validator at w3.or...
Where to find tutorials on Using Azure API Management Developer Portal? Here is a list of tutorials ...
FYIcenter.com Online Tools: FYIcenter JSON Validator and Formatter FYIcenter JSON to XML Converter F...
How to add a new operation to an API on the Publisher Dashboard of an Azure API Management Service? ...
How to use "link" command tool to link objet files? If you have object files previously compiled by ...