php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #11319 weird if/unlink thing
Submitted: 2001-06-06 15:32 UTC Modified: 2001-06-07 04:42 UTC
From: jf dot bethlehem at wanadoo dot nl Assigned:
Status: Closed Package: Unknown/Other Function
PHP Version: 4.0.5 OS: linux
Private report: No CVE-ID: None
 [2001-06-06 15:32 UTC] jf dot bethlehem at wanadoo dot nl
i noticed, that with this code, the $user file still gets
unlinked.

the file DOES exist, "test" does NOT get printed, and there
is no message of "user deleted" or "can't unlink".

For the rest, it's a standard debian install of php, with
the newest version of php installed (nightly update, regular upgrade).

(this code is part of an administration script, which adds
and deletes users)

code sample
=====
        if(!strcmp($adddelete, "delete"))
        {
                if(file_exists($user))
                {
                        echo "test";
                        if(unlink($user))
                        {
                              echo "user deleted.<br>";
                        }
                        else
                        {
                              //error
                              echo "can't unlink<br>";
                        }
                }
                else
                {
                     //error
                     echo "$user doesn't exist<br>";
                }
        }
        else
        {
               //error
               echo "wrong input<br>";
       }
====
end code sample


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-06-07 04:42 UTC] sniper@php.net
I can't reproduce this. I tried this in cmd line and 
"test" is printed. Try PHP 4.0.6RC2 from here:

http://www.php.net/~andi/php-4.0.6RC2.tar.gz

--Jani

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 07:01:31 2024 UTC