On 25-Jul-2001 Steven Michaels wrote:
> Hello,
> I've been wanting to open a file, read its contents,
> and if one line matches my text, have the program
> remove that line.  The file is in this format (a common
> text file.):
> User1
> User2
> User3
> What I want the program to do is to go through each
> line, and if that line matches User2, then have it
> delete it, so the finished text file would be
> User1
> User3
> The problem is that I can't find an equivalent of
> splice in perl, and that was what I used before
> to do this.  Could someone help me out?
> Thanks!

PHP4: 
  array_splice()

PHP3: untested stab:
  unset($user[1]);
  unset($user['User2']);
 

Regards,
-- 
Don Read                                       [EMAIL PROTECTED]
-- It's always darkest before the dawn. So if you are going to 
   steal the neighbor's newspaper, that's the time to do it.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to