Skip to content

Instantly share code, notes, and snippets.

@mach3
Created December 14, 2010 09:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mach3/740198 to your computer and use it in GitHub Desktop.
Save mach3/740198 to your computer and use it in GitHub Desktop.
Cheep tip to detect atom or rss.
<?php
$dom = DOMDocument::load( $url );
// TRUE when RSS 1.0/2.0
$isRSS = $dom->getElementsByTagName("item")->length > 0;
// TRUE when Atom
$isAtom = $dom->getElementsByTagName("entry")->length > 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment