Tools, FAQ, Tutorials:
Writing an Array to a File without File Handle in PHP
How To Write an Array to a File without a File Handle in PHP?
✍: FYIcenter.com
If you have an array, 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 all values from 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
$array["one"] = "Download PHP scripts at dev.fyicenter.com.\r\n";
$array["two"] = "Download Perl scripts at dev.fyicenter.com.\r\n";
$bytes = file_put_contents("/temp/todo.txt", $array);
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 Data from Keyboard in PHP
⇐ Writing a String to a File without a File Handle in PHP
2016-11-27, ∼2311🔥, 0💬
Popular Posts:
Where to find tutorials on Visual Studio? I want to know How to learn Visual Studio. Here is a large...
How to use the RSS Online Validator at w3.org? You can follow this tutorial to learn how to use the ...
How To Pad an Array with the Same Value Multiple Times in PHP? If you want to add the same value mul...
Where to find tutorials on Using Azure API Management Publisher Dashboard? Here is a list of tutoria...
How to use the "find-and-replace" Policy Statement for an Azure API service operation? The "find-and...