↧
Answer by Zevi Sternlicht for Check if RSS feed is associated with URL using PHP
You cant tell for sure, but most people use a link tag when there is one. Use file_get_contents to get the file in text format, and then search for type="application/rss+xml"
View ArticleAnswer by iTom for Check if RSS feed is associated with URL using PHP
No, it is no possible to tell just from the URL, however you should be able to tell if you load the URL's HTML code, for example using something like PHP's file_get_contents, or CURL. Normally a...
View ArticleCheck if RSS feed is associated with URL using PHP
Is it possible to find out from an URL if there is a RSS feed associated. eg. I have the url www.MyDomainName.com. Now is it possible to detect programmatically if there an RSS associated with the URL...
View Article