intuit / QuickBooks-V3-PHP-SDK

Official PHP SDK for QuickBooks REST API v3.0: https://developer.intuit.com/
Apache License 2.0
241 stars 240 forks source link

:bug: Fix xml UTF8 encoding #496

Open HamzaAlayed opened 1 year ago

HamzaAlayed commented 1 year ago

:bug: Use UTF8 encoding to fix some special characters in xml response and fix this error DOMDocument::loadXML(): PCDATA invalid Char .....

kkmuffme commented 2 months ago

While this is possible, I don't think that's a good idea.

Why not encode it with UTF-8?

if (mb_detect_encoding($xml_string, 'UTF-8', true) === false) {
        $xml_string = utf8_encode($xml_string);
}