Redeclare - 如果数组有多个值,则重复函数

时间:2012-07-22 13:26:20

标签: php arrays function count repeat

function test($str) {
  $c = count($str);
  if ($c>1) {
    foreach ($str as $key => $value) $result .= test($value);
  } else {
    $result = "<li>$str</li>\n";
  }
  echo $result ? "<ol>$result</ol>" : null;
}

$ str值也可以是这样的;

$str1 = "apple";

或类似的东西;

$str2 = array("apple","orange","pear");

如果count($ str)大于1,即$ str是is_array,则重复$ result。
但它不能像我想的那样工作..
我收到错误“无法重新声明test()(之前在...中声明”

理想的输出是 - $ str1;

<ol>
  <li>apple</li>
</ol>

理想的输出是 - $ str2;

<ol>
  <li>apple</li>
  <li>orange</li>
  <li>pear</li>
</ol>

3 个答案:

答案 0 :(得分:3)

function test($str) {

  // Ensure, $str is a good argument of implode()
  if ( ! is_array( $str )) {
    $str = array( $str );
  }

  $result = '<li>' . implode( '</li><li>', $str ) . '</li>';

  return '<ol>' . $result . '</ol>';

}

备注:您的方法可以返回:

<ol>
  <li>1</li>
  <li>
  <ol>
    <li>1</li>
    <li>2</li>
    <li>3</li>
  </ol>
  </li>
  <li>3</li>
</ol>

这真的是你想要实现的吗?它真的需要创建嵌套的OL结构吗?

答案 1 :(得分:1)

检查$str is an array,例如:

function test($str, $first=true) {
  if (!is_array($str)) {
    $result = "<li>$str</li>\n";
  } else {
    foreach ($str as $key => $value) $result .= test($value, false);
  }
  return ($first ? "<ol>$result</ol>" : $result);
}

另见this example

=== UPDATE ===

如果您想直接打印,请替换为:

function test($str, $first=true) {
  if (!is_array($str)) $result = "<li>$str</li>";
  else foreach ($str as $key => $value) $result .= test($value, false);
  if ($first) echo "<ol>$result</ol>";
  else return $result;
}

另见this example

答案 2 :(得分:1)

function testInternal($str){
    if(is_array($str))
        return implode('',array_map('testInternal', $str));
    else
        return '<li>'.$str.'</li>';
}
function test($str){
    echo '<ol>'.testInternal($str).'</ol>';
}