0
<?php

function get_video() {

$stripper = "Content...[video=1], content...content...[video=2],
             content...content...content...[video=1], no more...";

preg_match_all("/\[video=(.+?)\]/smi", $stripper, $search);  

$unique = array_unique($search[0]);

$total = count($unique);     
for($i=0; $i < $total; $i++) 
{    
  $vid = $search[1][$i]; 
  if ($vid > 0) 
  {      
    $random_numbers = rand(1, 1000);
    $video_id = $vid."_".$random_numbers;
    $stripper = str_replace($search[0][$i], $video_id, $stripper); 
  } 
} 
return $stripper;
}  

echo get_video();   
?>

$stripper で重複した [video=1] を削除したいのですが、必要な結果は次のとおりです。

Content...1_195, content...content...2_963, 
content...content...content..., no more...

重複した配列を削除するために array_unique() 関数を使用しています。上記のコードから、print_r($unique) の場合、重複する配列が削除されました。

Array ( [0] => [video=1] [1] => [video=2] )

しかし、get_video() をエコーすると、重複した [video=1] がまだ存在します。

Content...1_195, content...content...2_963, 
content...content...content...1_195([video=1]), no more...

理由がわかりません!!!:(

デモ: http://eval.in/7178

4

2 に答える 2

2

重複を削除するには、 a を実行しpreg_replace_callback、重複を "" に置き換えます。preg_match_all呼び出しの直前に次のコードを使用します。

$hash = array();
$stripper = preg_replace_callback("/\[video=(.+?)\]/smi",function($m){
    global $hash;
    if(isset($hash[$m[0]]))
        return "";
    else{
        $hash[$m[0]]=1;
        return $m[0];
    }
}, $stripper);   

http://eval.in/7185を参照

于 2013-01-21T18:47:48.793 に答える
1

これを試すことができます。

$stripper = "Content...[video=1], content...content...[video=2],
                content...content...content...[video=1], no more...";
preg_match_all("/\[video=([^\]]*)/i", $stripper, $matches);
$result = array();
foreach ($matches[1] as $k => $v) {
    if (!isset($result[$v])) {
        $result[$v] = $v;
    }
}
print_r($result);

出力;

Array
(
    [1] => 1
    [2] => 2
)
于 2013-01-21T19:18:48.810 に答える