1

我有这个字符串(仅作为示例):

$string='cat-cat.png-0,dog-dog.jpg-0,phone-nokia.png-1,horse-xyz.png-0';

以及重新制作此字符串的代码

$string=explode(",", $string);
$i = 0;
$ile=count($string);
while ($i < $ile) {
    $a = explode("-", $string[$i]);
    if($a[2]==0) $animal .= $a[0].' '.$a[1];
    elseif($a[2]==1) $thing .= $a[0].' '.$a[1];
    $i++;
}

我需要搜索这个数组并分组: $animal 和 $thing 我知道为什么这段代码不起作用,但我不知道这样做。请帮帮我 :)

4

5 回答 5

1

你可以试试

$string = 'cat-cat.png-0,dog-dog.jpg-0,phone-nokia.png-1,horse-xyz.png-0';
$array = explode(",", $string);
$list = array();

foreach ( $array as $info ) {
    list($prifix, $name, $id) = explode("-", $info);
    $list[$id][] = $prifix . "-" . $name;
}

var_dump($list);

输出

array
  0 => 
    array
      0 => string 'cat-cat.png' (length=11)
      1 => string 'dog-dog.jpg' (length=11)
      2 => string 'horse-xyz.png' (length=13)
  1 => 
    array
      0 => string 'phone-nokia.png' (length=15)
于 2012-10-05T14:06:43.590 回答
0

这应该完成任务:

$string = 'cat-cat.png-0,dog-dog.jpg-0,phone-nokia.png-1,horse-xyz.png-0';
$array  = explode(',', $string);
$animal = array();
$thing  = array();
foreach ($array as $item)
{
    $a = explode('-', $item);
    if( $a[2] == 1 )
    {
        $thing[] = $a[0] . ' ' . $a[1];
    }
    else
    {
        $animal[] = $a[0] . ' ' . $a[1];
    }
}

然后,如果您需要将这些数组作为字符串,则可以从那里内爆这些数组。

于 2012-10-05T13:34:59.933 回答
0

如果您举例说明代码应该输出什么,或者您希望实现的结果数组,它可能会有所帮助。

如果您完全坚持输入字符串格式,那么您可以使用正则表达式来使其更加健壮。就像是:

/([^,]*)-(\d+)/

将匹配文件名和类型,假设类型始终是数字。

例如:

preg_match_all("/([^,]*)-(\d+)/", "cat-cat.png-0,dog-dog.jpg-0,phone-nokia.png-1,horse-xyz.png-0", $matches); var_dump($matches);
$items = array();
foreach ($matches[2] as $key=>$type) {
    if (empty($items[$type])) {
        $items[$type] = array();
    }
    $items[$type][] = $matches[1][$key];
}
var_dump($items);

理想情况下,您希望添加更多错误检查,例如检查匹配是否按预期返回。

于 2012-10-05T13:36:25.343 回答
0

您也可以通过preg_match在图像名称包含其他字符(如额外-或数字)的情况下使用来实现它,以下是示例:

$string = 'cat-cat.png-0,dog-snoopy-dog.jpg-0,phone-nokia-6310.png-1,rabbit-bugs-bunny-eating-carrot.png-0,ignore-me';

$tmp = explode(',', $string);

$animals = $things = array();

foreach($tmp as $value)
{
    preg_match('/(?P<name>[A-Za-z]+)-(?P<file>[A-Za-z0-9\.-]+)-(?P<number>\d+)/', $value, $matches);

    if($matches)
    {
        switch($matches['number'])
        {
            case '0':
                array_push($animals, sprintf('%s %s', $matches['name'], $matches['file']));
                break;
            case '1':
                array_push($things, sprintf('%s %s', $matches['name'], $matches['file']));
                break;
        }
    }
}

结果:

array (size=3)
  0 => string 'cat cat.png' (length=11)
  1 => string 'dog snoopy-dog.jpg' (length=18)
  2 => string 'rabbit bugs-bunny-eating-carrot.png' (length=35)
array (size=1)
  0 => string 'phone nokia-6310.png' (length=20)
于 2012-10-05T14:08:51.610 回答
0

试试下面的代码

// Remove all things and all numbers with preceding hyphens
$animal = trim(preg_replace('/([a-zA-Z\-\.]+\-1,?)|(\-\d+)/', '', $string), ',');
// gives 'cat-cat.png,dog-dog.jpg,horse-xyz.png'

// Remove all animals and all numbers with preceding hyphens
$thing = trim(preg_replace('/([a-zA-Z\-\.]+\-0,?)|(\-\d+)/', '', $string), ',');
// gives 'phone-nokia.png'
于 2012-10-05T14:14:00.273 回答