Say you have added a bucket to Riak like below (Using riak-php-client):
$myData = '{
"24":{
"1": {
"Ryan":{
"email":"chris@test.com",
"title":"Boss",
"Phone":"555.555.5555",
"Fax":"555.555.5555",
"Twitter":"@testingtwitter"
}
}
}
}';
$data = json_decode($myData, true);
$object->setData($myData);
$object->store();
}
}';
If you want to access the "Twitter" value. What is the correct way to access that key via Riak?