payment cards
This commit is contained in:
@@ -8,7 +8,17 @@ class DigiCallBack extends BaseController
|
|||||||
$raw_json = file_get_contents('php://input');
|
$raw_json = file_get_contents('php://input');
|
||||||
$in = json_decode($raw_json, true);
|
$in = json_decode($raw_json, true);
|
||||||
$out =[];
|
$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 );
|
return []; //json_encode( $final_out );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user