Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how do I do this.

the file can get very big, so good performance is necessary

code is helpful.

this is what i have so far

function prepend($string, $filename) { 
    $context = stream_context_create (); 
    $fp = fopen($filename,'r',1,$context); 
    $tmpname = md5($string); 
    file_put_contents($tmpname,$string); 
    file_put_contents($tmpname,$fp,FILE_APPEND); 
    fclose($fp); 
    unlink($filename); 
    rename($tmpname,$filename); 
} 

thanks in advance

regards

Jer

share|improve this question
What do you have so far? What exactly do you want? – Sjoerd Jul 13 '10 at 7:25
function prepend($string, $filename){ $context = stream_context_create (); $fp = fopen($filename,'r',1,$context); $tmpname = md5($string); file_put_contents($tmpname,$string); file_put_contents($tmpname,$fp,FILE_APPEND); fclose($fp); unlink($filename); rename($tmpname,$filename); } this is what I have found. not sure if it offers the most optimal performance for large files. – Jeremy Gwa Jul 13 '10 at 7:33
9  
Please improve Accept Rate – Gordon Jul 13 '10 at 7:51
Is there a reason why you must prepend to a single file? – salathe Jul 13 '10 at 8:04
possible duplicate of How do I prepend file to begining?? – deceze Aug 20 '10 at 4:44

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.