- json_decode: documentation ( source)
<?php
$json = '{"Confirmation":"200710035843DH4","Message":"success","Status":"success"}';
$arr = json_decode($json, true);
list('Confirmation' => $conf, 'Message' => $msg, 'Status' => $status) = $arr;
echo $conf . PHP_EOL;
echo $msg . PHP_EOL;
echo $status . PHP_EOL;