1

たとえば、私はこの配列を持っています:

Array (
[0] => Array (
 [id] => 45 [name] => Name1 [message] => Ololo [date_create] => 21:03:56 )
[1] => Array (
 [id] => 46 [name] => visitor [message] => Hi! [date_create] => 21:06:28 )
)

次のように変換する必要があります:

Array (
 [id] => Array (
  [0] => 45, [1] => 46
 )
 [name] => Array (
  [0] => Name1, [1] => visitor
 )
 [message] => Array (
  [0] => Ololo, [1] => Hi!
 ) 
 [date_create] => Array (
  [0] => 21:03:56, [1] => 21:06:28
 )
)

これを変換する関数を知りたいのですが、

4

1 に答える 1

5

次のコードブロックを試してください。

// Assuming the array you have is called $mainArray.
// The output will be $outputArray.
$outputArray = array();

foreach ($mainArray as $index => $array) { // Iterate through all the arrays inside the main array.
// foreach ($mainArray as $array) { // Use this if the numeric index order doesn't matter.
    foreach ($array as $key => $value) { // Iterate through each inner array.
        // Load the multidimensional array with the first key as one of (id, name, message, date_create) and second key as the numeric index (if you need it).
        $outputArray[$key][$index] = $value;
        // $outputArray[$key][] = $value; // Use this if the numeric index order doesn't matter.
    }
}

print_r($outputArray);
于 2012-09-02T08:28:45.647 に答える