PHP Write to File

<?PHP
	$handle = fopen("test.txt","w+");
	fwrite($handle,"PHP tutorial");
	fwrite($handle, "Write to a file");
	fclose($handle);
?>

fopen() modes:

Syntax
Description
w
write only, delete the file content, if file not exist, create it
w+
read and write, delete the file content, if file not exist, create it
a
write only, append, if file not exist, create it
a+
read and write, if file not exist, create it

file_put_content() function can write content into a file without openning it:

<?PHP
	$file = "test.txt";
	file_put_contents($file,"append something", FILE_APPEND);
?>

file_put_contents() flags:

flags
Description
FILE_USE_INCLUDE_PATH
search file in the included directory
FILE_APPEND
append
LOCK_EX
exclusive writing, proventing other people write to the file at the same time


:: PHP Tutorials Home ::
PHP String Functions
 • concatenation • echo
 • ereg • ereg_replace
 • explode • htmlspecialchars
 • preg_match • preg_replace
 • preg_split • print,sprintf
 • regular expr. • str_replace
 • strcmp • strpos
 • strrev • strrpos
 • strtr • substr
 • substr_replace
PHP Array Functions
 • array_diff • array_flip
 • array_intersect • array_key_exists
 • array_keys • array_merge
 • array_pop • array_push
 • array_rand • array_search
 • array_splice • array_unshift
 • array_values • asort & arsort
 • count • in_array
 • ksort • shuffle
 • sort
PHP Data Types
 • array • associative array
 • date & time • number
 • class, object • regular expression
 • string • variables
PHP Loop & Conditions
 • continue & break • for loop
 • foreach • if else
 • not equal • while
PHP File System Functions
 • copy • delete, unlink
 • dirname • download url
 • file_exists • is_file
 • mkdir • read file
 • scandir • write file
PHP Popular Topics
 • ajax • clone
 • comments • constants
 • cookie • database
 • defined • die
 • form validation • gd, draw images
 • global variables • header url
 • heredoc • mail
 • pass by reference • print
 • regular expr. • sessions
 • threads • xml parse
PHP Math Functions
 • abs • cos
 • exp • floor & ceil
 • fmod • log
 • max & min • pow
 • round • sin
 • sqrt • tan
endmemo.com © 2024  | Terms of Use | Privacy | Home