Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
How To Write a String to a File without a File Handle
How To Write a String to a File without a File Handle? - PHP Script Tips - Reading and Writing Files
✍: 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.
2007-04-23, 4612👍, 0💬
Popular Posts:
How To Control White Spaces between Table Cells? - XHTML 1.0 Tutorials - Understanding Tables and Ta...
What Is the Data Pump Import Utility? - Oracle DBA FAQ - Loading and Exporting Data Oracle Data Pump...
Would I use print "$a dollars" or "{$a} dollars" to print out the amount of dollars in this example?...
What's difference between HashTable and ArrayList ? You can access array using INDEX value of array,...
How do we host a WCF service in IIS? Note: - The best to know how to host a WCF in IIS is by doing a...