diff --git a/app/Controllers/DigiCallBack.php b/app/Controllers/DigiCallBack.php index bca37e7..1e8ed8d 100644 --- a/app/Controllers/DigiCallBack.php +++ b/app/Controllers/DigiCallBack.php @@ -8,7 +8,17 @@ class DigiCallBack extends BaseController $raw_json = file_get_contents('php://input'); $in = json_decode($raw_json, true); $out =[]; - log_message('critical', "DigiCallBack::cardAccount ********* ALL ".serialize($in) ); + + $inKeys = array_keys($in); + foreach ($inKeys as $item){ + log_message('critical', "DigiCallBack:: item ********* ". $in[$item] ); + } + +// $arr = array(1, 2, 3, 4); +//foreach ($arr as &$value) { +// $value = $value * 2; +//} + return []; //json_encode( $final_out ); }