So I get a SoapClient response in XML that has 18000 entries. The request times out and I have to use :
ini_set('default_socket_timeout', 600);
But as I read online it seems like a bad practice and it is advised that I process the XML in batches.
Is that possible to do in PHP?