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, ∼2318🔥, 0💬
Popular Posts:
How to create the Hello-3.0.epub package? I have all required files to create Hello-3.0.epub. To cre...
How to use the JSON to XML Conversion Tool at freeformatter.com? If you want to try the JSON to XML ...
How to install .NET Framework in Visual Studio Community 2017? I have the Visual Studio Installer in...
How to install "C++/CLI Support" component in Visual Studio? I need to build my Visual Studio C++/CL...
How to use the "forward-request" Policy Statement to call the backend service for an Azure API servi...