Відмінності між версіями «Як додати інформацію в початок файлу?»
Матеріал з Вікі ЦДУ
Рядок 1: | Рядок 1: | ||
− | <font color="#008000"><?</font><font color="#0000FF">php</font> | + | <font color="#008000"><?</font><font color="#0000FF">php</font> |
+ | |||
+ | <font color="#008000">$</font><font color="#0000FF">f</font> = <font color="#0000FF">fopen</font>( <font color="#FF0000">"file.txt"</font> , <font color="#FF0000">"r" </font>); | ||
+ | $text = fread( $f , filesize( $f ) ); | ||
+ | close($f); | ||
− | $ | + | $text_towr = "Some Text to write in file"; |
− | + | ||
− | + | ||
− | $ | + | $f = fopen( "file.txt" , "w" ); |
+ | fwrite( $f , $text_towr . $text ); | ||
+ | close($f); | ||
− | + | ?> | |
− | + | ||
− | + | ||
− | + | ||
− | ?> | + | |
[[Робота з файлами в PHP]] | [[Робота з файлами в PHP]] |
Версія за 10:16, 28 квітня 2010
<?php $f = fopen( "file.txt" , "r" ); $text = fread( $f , filesize( $f ) ); close($f);
$text_towr = "Some Text to write in file";
$f = fopen( "file.txt" , "w" ); fwrite( $f , $text_towr . $text ); close($f);
?>