Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Strip whitespace (or other characters) from the beginning and end of a string
<?php trim(string $string, string $characters = " \n\r\t\v\x00"): string
<?php             $responseXml = $response->getBody()->getContents();

            


            if (empty(trim($responseXml))) {

                throw new InvalidResponseException("Empty response received from AADE MyData API");

            }
<?php             $responseXml = $response->getBody()->getContents();




            if (empty(trim($responseXml))) {

                throw new InvalidResponseException("Empty response received from AADE MyData API");

            }