I have a PHP function which populates a multi-dimensional array
$client->getResponse()
I want to utilise that array directly, something like this:
echo '$client->getResponse()[0]'; which obviously doesn't work.
I don't want to have to do this
$arr = array($client->getResponse()); as that brings in another level of array which I don't really want.