Wrote some PHP for the first time in about 8 years.
I think I liked it. Maybe. Associative Arrays and the like
<?php
$array = array(
'units' => array(
'1117411' => array(
'is_shipped_at' => 'true',
'shipped_at' => '2014-10-14 T14:56:55+00:00'
)
)
);
var_dump($array);
?>
Robs-iMac:snarf rl$ php -f data.php
array(1) {
["units"]=>
array(1) {
[1117411]=>
array(2) {
["is_shipped_at"]=>
string(4) "true"
["shipped_at"]=>
string(26) "2014-10-14 T14:56:55+00:00"
}
}
}