In my web site I have implemented authorixe.net CIM function. I have successfully created my users details and deleted users account. Now I want to retrieve customer profile info. I have send a customer profile request and tried to display the Credit card number and exp date For Renew the payment process (For the site objective). See the code below
if ("Ok" == $parsedresponse->messages->resultCode) {
echo $parsedresponse->profile->paymentProfiles->payment->creditCard->cardNumber;
echo $parsedresponse->profile->paymentProfiles->payment->creditCard->expirationDate;
}
I got the last 4 digits as card number, and got the result XXXX as the Expiration date.
I need to display the date as usual date (Not XXXX format). How can I get the expiration date?