Search directory

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

Can some body lookup and fix my code please.
What exactly I need is  "$ip" variable  should look into "$iplookup"
directory and locate its ip file.
"$ip" variable it pass to the funcation along with the "$username" as you
can see in my code.
But im not able to fix how "$ip" well search "$iplookup" directory. And get
the ip file match to it.      



<?php


function timeout($username, $ip)

{


$iplookup = glob('/var/log/phplogs/iplogs/');


foreach(glob('/tmp/sess*') as $file) {
    if (time()- filemtime($ip) > 60)

{
        $old = "$username";
        $content = file_get_contents($file);
        if(strpos($content, $old) !== false) {
            unlink($file);
        }
    }
}

}
?>

<<attachment: smime.p7s>>


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux