my json response i am getting
$str = '{"Refund_Order_Result":{"reason":"","refund_status":0}} ';
$refoutput = json_decode($str,true);
print $refoutput->Refund_Order_Result->refund_status;
i want to get value of refund_status unable to do that . any way to get values


$refoutput. Check if it is an object or an array and move forward from that.