tommy20 Posted November 3, 2009 Share Posted November 3, 2009 I have a text file with multiple lines of text. Each line has a different word on it. I want to setup a script to search for a particular line/ word and delete it from the file. Do I need to set up an array, read the files into it, the somehow search for the word, delete it and rewrite the file without the missing word. If you could throw some light on this I would be most grateful. Link to comment https://forums.phpfreaks.com/topic/180085-delete-form-file/ Share on other sites More sharing options...
GingerRobot Posted November 3, 2009 Share Posted November 3, 2009 Do I need to set up an array, read the files into it, the somehow search for the word, delete it and rewrite the file without the missing word. Err, yep. Pretty much. These are the tools you'll need: file, array_search, unset and fwrite Link to comment https://forums.phpfreaks.com/topic/180085-delete-form-file/#findComment-950060 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.