PHP:将多维数组转换为字符串

时间:2015-09-15 05:51:28

标签: php arrays multidimensional-array

我正在尝试将多维数组转换为字符串。

直到现在我已经能够将管道分隔的字符串转换为数组。

如:

group|key|value
group|key_second|value

将呈现为以下数组:

$x = array(
    'group' => array(
        'key' => 'value',
        'key_second' => 'value'
    ),
);

然而,现在我希望它是另一种方式,其中提供多维数组并且我想将其转换为管道分隔的字符串就像在第一个代码示例中一样。

任何想法如何做到这一点?

PS:请注意,数组可以动态地具有任何深度。

例如:

$x['group']['sub_group']['category']['key'] = 'value'

转换为

group|sub_group|category|key|value

5 个答案:

答案 0 :(得分:2)

我创建了自己的功能: 即使是大数组也应该没有问题

function array_to_pipe($array, $delimeter = '|', $parents = array(), $recursive = false)
{
    $result = '';

    foreach ($array as $key => $value) {
        $group = $parents;
        array_push($group, $key);

        // check if value is an array
        if (is_array($value)) {
            if ($merge = array_to_pipe($value, $delimeter, $group, true)) {
                $result = $result . $merge;
            }
            continue;
        }

        // check if parent is defined
        if (!empty($parents)) {
            $result = $result . PHP_EOL . implode($delimeter, $group) . $delimeter . $value;
            continue;
        }

        $result = $result . PHP_EOL . $key . $delimeter . $value;
    }

    // somehow the function outputs a new line at the beginning, we fix that
    // by removing the first new line character
    if (!$recursive) {
        $result = substr($result, 1);
    }

    return $result;
}

此处提供的演示http://ideone.com/j6nThF

答案 1 :(得分:1)

您也可以使用如下循环来执行此操作:

$x = array(
'group' => array(
    'key' => 'value',
    'key_second' => 'value'
)
);
$yourstring ="";
foreach ($x as $key => $value)
{
    foreach ($x[$key] as $key2 => $value2)
    {
        $yourstring .= $key.'|'.$key2.'|'.$x[$key][$key2]."<BR />";
    }
}

echo $yourstring;

这是一个有效的 DEMO

答案 2 :(得分:1)

这段代码应该做的事情。

您需要一个递归函数来执行此操作。但要注意不要将对象或大数组传递给它,因为这种方法非常耗费内存。

<?php
while ( $loop->have_posts() ) : $loop->the_post();
?>
<span id="countdown<?php echo $i; ?>"> <?php echo $timeleft; ?> </span>
<script>new StartTimer(<?php echo $i; ?>,'<?php echo $timeleft; ?>').myTimer();</script>
<?php $i++;endwhile;wp_reset_postdata(); ?>

DEMO:unable to register (com.google.iid error 1005.)

答案 3 :(得分:0)

你可以通过

来完成
  1. 查看serializeunserialize
  2. 查看json_encodejson_decode
  3. 查看implode
  4.   

    Multidimensional Array to String

    可能重复

答案 4 :(得分:0)

如果你特别想要一个字符串,你可以这样做:

$x = array(
'group' => array(
    'key' => 'value',
    'key_second' => 'value'
),
 'group2' => array(
    'key2' => 'value',
    'key_second2' => 'value'
),
);
$str='';
foreach ($x as $key=>$value)
{
   if($str=='')
       $str.=$key;
   else
       $str.="|$key";
   foreach ($value as $key1=>$value1)
       $str.="|$key1|$value1";

}

echo $str;  //it will print group|key|value|key_second|value|group2|key2|value|key_second2|value