Hi,
When i send request to "authorize a credit card payment" using PHP Curl, it returns weird characters in response at start and end. Also i tried to convert Json response to PHP array then i got Null. see screenshot
https://www.diigo.com/item/image/5slrw/h2ks
Thanks
02-16-2018 02:12 AM
Hello jay71134,
What you are seeing are the BOM (byte order mark) at the beginning of the stream and EOF (end-of-file) byte at the end in the response. Depending on the client (in your case curl), these characters may or may not be visible. There may be several options to handle these characters:
Raj
02-20-2018 10:02 PM