Я пытаюсь добавить HTML в файл, используя fwrite()
. Моя конечная цель – заставить его добавить 15 строк над концом файла. Вот что я имею до сих пор:
<?php $file = fopen("index.html", "r+"); // Seek to the end fseek($file, SEEK_END, 0); // Get and save that position $filesize = ftell($file); // Seek to half the length of the file fseek($file, SEEK_SET, $filesize + 15); // Write your data $main = <<<MAIN //html goes here MAIN; fwrite($file, $main); // Close the file handler fclose($file); ?>
Это просто перезаписывает верхнюю часть файла. Благодарю.