I have a xml
file that has more than 5000 products (items). It's really a big file and the execution of parsing that file is taking more than 40 seconds.
My php code :
ini_set('max_execution_time', 300);
$xml = simplexml_load_file("wwww.example.com");
print_r($xml);
Is there any solution for this?? for example loading just a part of file?