0

我有一个广告网站,其中图像位于并命名如下:

images/139/16_2_139.jpg

在哪里: -

  • images/139/是用户文件夹
  • 16是广告的id
  • 2是此广告可用的图片数量
  • 139是用户标识

例子

images/1390/3800_12_1390.jpg
images/27/728_7_27.jpg
images/8563/13281_2_8563.jpg

现在我需要在幻灯片(彩盒)中显示与此广告有关的所有图像

我从 sql 中提取广告 ID 和用户 ID

我需要 php 在目录中读取有关广告 ID 和用户 ID 的每个图像,并将其显示在彩盒幻灯片(jQuery 插件)中,广告 ID 从 1 到 15000,用户 ID 从 1 到 9000,也可以更多

我不知道更好的正则表达式或 preg_match 是否可以解决我的问题

感谢您的帮助

4

2 回答 2

0

try this

$str='images/1390/3800_12_1390.jpg

images/27/728_7_27.jpg

images/8563/13281_2_8563.jpg';

preg_match_all('#images/([0-9]+)/([0-9]+)_([0-9]+)_([0-9]+)#is',$str,$res);

$r=array();unset($res[0]);
foreach($res as $k=>$v){
    foreach($v as $k2=>$v2){
        $r[$k2][$k]=$v2;
    }



}

print_r($r);
于 2013-01-16T12:09:12.877 回答
0

我为自己找到了一个解决方案,我分享以供参考:

function microtime_float()
{
   list($usec, $sec) = explode(' ', microtime());

   return ((float)$usec + (float)$sec);
}
ini_set ("display_errors", "1");
error_reporting(E_ALL);
$start = microtime_float();
$b = '<br />';  $ad = 16;   $cust = 139;
$directory = $_SERVER['DOCUMENT_ROOT'].'/ginew/advertiser/images/'. $cust .'/';
// echo $directory;
if( is_dir( $directory ) ) {
$handler = opendir( $directory );
    $images = glob("$directory{*.jpg,*.JPG,*jpeg, *JPEG}", GLOB_BRACE);
    $cnt = count($images);
echo 'total images in directory: '. $cnt.$b;

$i=0;   $img1 = '';
while ($filename = readdir($handler)) {
    if($filename != '.' && $filename != '..') {
        $base = basename($filename, ".jpg"); // echo $base.$b;
        $ext = substr(strrchr($filename, '.'), 0); // echo $ext.$b;
        $imgsize = @filesize($directory.$filename); $imgsize =     ($imgsize/1000000) .' mb';
if ( preg_match( '#'.$ad.'_([0-9]+)_'.$cust.'#', $base, $matches ) ) { 
$i++;
 $img = $i .' matches '. $matches[0] . $ext; 
$img1.= $i .' matches '. $matches[1] .'<br>'; 

 echo $img.$b;
        } // END is_dir
          echo $i .' --> '. $filename . $ext .' => '. $imgsize .'<br />';
    } // END preg_match
} // END if filename
$end = microtime_float();
} // END while
echo '/ -------------------------- /<br>';
echo $img1.$b;
echo 'matches images found: '. $i . $b;
echo 'preg_match brauch : '.($end-$start).' Sekonnen';

输出:
目录中的总图像:6
1 匹配 16_2_139.jpg
2 匹配 16_7_139.jpg
3 匹配 16_1_139.jpg
/ -------------------------- /
1 匹配 2
2 匹配 7
3 匹配 1

matches images found: 3
preg_match brauch : 0.00037693977355957 Sekonnen

如果有人对此有更好的解决方案,请张贴感谢大家;-)

于 2013-01-17T03:35:51.463 回答