↧
Answer by Pekka for PHP XML disable feed if offline
You can use file_get_contents() and define the timeout using a stream context as explained here:Does file_get_contents() have a timeout setting?Modified code from the answer there:...
View ArticlePHP XML disable feed if offline
<?php define(feed,'http://www.example.com/feed/'); $xml_feed = file_get_contents(feed); $xml_parser = xml_parser_create(); xml_parse_into_struct($xml_parser,$xml_feed,$xml_keys,$xml_index);...
View Article