I'm trying to access a piece of data in an array of arrays that (I believe) is in an object (this may not be the right term though).
When I do print_r on this: $order_total_modules->process() I get...
Array ( [0] => Array ( [code] => ot_subtotal [title] => Sub-Total: [text] => $49.99 [value] => 49.99 [sort_order] => 1 ) [1] => Array ( [code] => ot_total [title] => Total: [text] => $0.00 [value] => 0 [sort_order] => 12 ) ) If I run echo $order_total_modules->process()[1][3];, I should get "0", because that is the 3rd element of the 2nd array... right? Yet, I get an error.
Can anyone help with this?
3, it isvalue.[1]['value']