突出显示数组中的特定元素 - PHP

时间:2013-07-16 04:58:41

标签: php arrays

我的一些代码......

$a_array = array(2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 20);
$b_array = array(2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 20);

$a = $a_array[array_rand($a_array)];
$b = $b_array[array_rand($b_array)];

$a_multiples = array($a*1, $a*2, $a*3, $a*4, $a*5, $a*6, $a*7, $a*8, $a*9, $a*10);
$b_multiples = array($b*1, $b*2, $b*3, $b*4, $b*5, $b*6, $b*7, $b*8, $b*9, $b*10);

$result = array_intersect($a_multiples, $b_multiples);
$d = reset($result);

$ d是$ a和$ b的最小公倍数(假设它在$ a和$ b的前10个倍数中)。然后我列出了$ a和$ b的前10个倍数......

echo $lista = implode(', ', $a_multiples);
echo $listb = implode(', ', $b_multiples);

如何在$ lista和$ listb中“突出显示”(即以粗体显示)LCM?

2 个答案:

答案 0 :(得分:1)

如果你使用的是php 5.3或更高版本,你可以使用一个函数创建一个可以传递给array_map的荧光笔(闭包):

 function highlighterGenerator($lcd){
       return function ($a) use ($lcd){
             return $a == $lcd?"<strong>".$a."</strong>":$a;
       }
 }

使用:

echo implode(", ", array_map(highlighterGenerator($d), $a_multiples));
echo implode(", ", array_map(highlighterGenerator($d), $b_multiples));

对于旧版本的php,以下解决方案应该是等效的:

function highlighter($arr, $lcd){
     $ret = array();
     foreach($arr as $val){
          $ret[] = $val == $lcd?"<strong>".$val."</strong>":$val;
     }
     return $ret;
}

使用:

echo implode(", ", highlighter($a_multiples, $d));
echo implode(", ", highlighter($b_multiples, $d));

答案 1 :(得分:1)

试试这个(它更快)

echo "<strong>" . implode("</strong><strong>", $a_multiples) . "</strong>";
echo "<strong>" . implode("</strong><strong>", $b_multiples) . "</strong>";

DEMO.