Jump to content

[SOLVED] Append to a Temporary File?


TripleDES

Recommended Posts

Is it possible to append to a temporary file?

 

I'm iterating through a file and when a condition becomes true, I want to append the content to a temporary file.  I want to display the contents once the loop completes.  If there's a better suggestion on how to go about this, please let me know.

Link to comment
https://forums.phpfreaks.com/topic/53641-solved-append-to-a-temporary-file/
Share on other sites

you mean like this ?

 

<?php
$somecontent = "blar";
if($a == "stuff")
{
    $handle = fopen($filename, 'a')
    if (fwrite($handle, $somecontent) === FALSE) {
        echo "Cannot write to file ($filename)";
        exit;
    }
    fclose($handle);
}
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.