<?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...
我想不通为什么!!!:(