I am trying to return a array of hashmaps from Java to php.
What I want in php is this :
Array :
[0] =>
['abc'] = "blah blah abc"
['def'] = "blah blah def"
['ghi'] = "blah blah ghi"
[1] =>
['abc'] = "blah blah pqr"
['def'] = "blah blah stu"
['ghi'] = "blah blah xyz"
What is the best way to do it through Java <=> thrift <=> php
?