Hello,
Is it possible to detect errors or response time when opening XML?
Thank you so much.
Is it possible to detect errors or response time when opening XML?
PHP Code:
$z = new XMLReader;
$z->open('http://www.domain.com/webservicexml'); //If response time is longer than 5 seconds, it redirects to another page.
$doc = new DOMDocument;
Thank you so much.