26 February, 2013

WRITE TO FILE

< ? php
$filename = ‘test.txt’;
$somecontent = “Add this to the filen”;
// Let’s make sure the file exists and is writable first.
if (is_writable($filename))
{
// In our example we’re opening $filename in append mode.
// The file pointer is at the bottom of the file hence
// that’s where $somecontent will go when we fwrite() it.
if (!$handle = fopen($filename, ‘a’))
{
print “Cannot open file ($filename)”;
exit;
}
// Write $somecontent to our opened file.
if (!fwrite($handle, $somecontent))
{
print “Cannot write to file ($filename)”;
exit;
}
print “Success, wrote ($somecontent) to file ($filename)”;
fclose($handle);
}
else
{
print “The file $filename is not writable”;
}
? >

No comments:

Post a Comment

Thank You !