2014-09-02 77 views
-1

我有一個腳本需要從不同的緩存URL中提取數據。解碼緩存url的多個選項

現在$ url ='http://example.com/search.php?user=abc&part='。$ part;

我需要的腳本的部分的下方修飾以搜索多個MD5加密的URL


$ URL = 'http://example.com/search.php?user=abc&part=' $部分。
$ url ='http://example.com/search.php?user=xyz&part='。$ part;
$ url ='http://example.com/search.php?user=123&part='。$ part;

如果返回的值超過1,則返回帶有最新日期的值。

$ xid需要是$ url的當前設置

原始碼。

function get_cache_file($url) { 
     $xid = md5($url); 

     $gendir = CACHE_ROOT . substr($xid, 0, 1) . '/'. substr($xid, 1, 2); 

     if(!is_dir($gendir)) { 
      mkdir($gendir, 0777, true); 
      } 

     return $gendir . '/' . $xid; 
    } 

回答

0

找到了問題的答案。

function get_cache_file($part) 
{ 
    $users = array('user1', 'user2', 'user3'); 

    $file = ''; 
    $time = 0; 

    foreach ($users as $user) { 
     $url = 'http://example.com/search.php?user=' . $user . '&part=' . $part; 
     $xid = md5($url); 

     $gendir = CACHE_ROOT . substr($xid, 0, 1) . '/' . substr($xid, 1, 2); 

     if (is_dir($gendir) && is_file($gendir . '/' . $xid)) { 
      if ($time < filemtime($file)) { 
       $time = filemtime($file); 
       $file = $gendir . '/' . $xid; 
      } 
     } 
    }