How to insert some text middle of the file in php, is that ay method available to insert text in middle of file content.
not exactly middle of the file., search a keyword, then we need to insert before or after the content,
if the search keyword found more than one time in file, then wat would be happen
fopen, then fseek, then fwrite
Using
fopen
,fseek
,ftell
,fwrite
, andfclose
:fopen()
fseek()
<-- What you want I'd imaginefwrite()
fclose()