Re: Search directory

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

 



On 6/21/2014 6:19 PM, hadi wrote:
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);
         }
     }
}

}
?>

Maybe you could explain what you want to do in english and leave the coding to us. What you are "saying" and what you are doing are not the same thing.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





[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