Skip to content

Instantly share code, notes, and snippets.

@mchelen
Last active March 31, 2016 14:02
Show Gist options
  • Save mchelen/2fa1e24800a2abd4a0ae4cad01d4be4e to your computer and use it in GitHub Desktop.
Save mchelen/2fa1e24800a2abd4a0ae4cad01d4be4e to your computer and use it in GitHub Desktop.
php data transform
<?php
$input = array(
array(
'category1' => 'foo',
'category2' => 'bar',
'value' => 5,
),
array(
'category1' => 'foo',
'category2' => 'bar',
'value' => 7,
),
array(
'category1' => 'foo',
'category2' => 'baz',
'value' => 3,
),
);
$output = array(
'foo' => array(
'bar' => array(
5,
7
)
'baz'=> array(
3
)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment